Hyprland Quick-Start Guide: Setting Up a Modern Tiling Window Manager on Linux

Hyprland is a dynamic tiling window manager built for the modern Wayland display server protocol. In this guide, we’ll walk you through the process of setting up Hyprland on your Linux system.

Why Wayland?

First and foremost, performance and reduced input lag. Wayland is a modern replacement for X11, and it has much cleaner architecture, better application separation, and improved HiDPI hardware support.

What is a Tiling Window Manager and Why Should I Care?

So, a tiling window manager, as opposed to a floating window manager, organizes your windows in a non-overlapping, grid-like pattern. It will give you a superhuman ability to fly through your windows and workspaces with hotkeys and improve your productivity.

[Read More]

How to install upstream kernel on debian testing

Sometimes you need to install the latest and greatest kernel image on you Debian testing installation. In most cases that is to support some newer hardware piece, or to get latest features. You have two choices here: You can either compile it from sources, or you can just take it from the Debian experimental repository. There are plenty guides online on how to build you kernel from sources, so we won’t go into it.

[Read More]

How to install Android ADT Bundle with Eclipse on Debian x86_64

This is a very old post and you probably should not bee reading this, because it is deprecated. But if you insist, suit yourself.

Due to missing 32 bit libraries installation eclipse adt bundle fails to run on x64 Debian installation. This is how you can fix this:

How to install Android ADT Bundle dependencies:
  1. Download ADT Bundle from d.android.com
  2. Open terminal and run as root:
```
sudo apt-get install openjdk-6-jdk ia32-libs lib32ncurses5 lib32stdc++6 
unzip adt-bundle-linux-x86_64-20130219.zip</pre>
```
[Read More]