Subtle
From Subtle project page:
- Subtle is a manual tiling window manager with a rather uncommon approach of tiling: Instead of relying on predefined layouts, Subtle divides the screen into a grid with customizable slots (called gravities).
Subtle is configured with Ruby for Xorg.
Installing
Install the subtle-hgAUR package.
Starting
Run subtle
with xinit.
Remember that Subtle does not provide any icons or menus, and the only predefined key binding that opens a terminal is Super+Enter
, which will open URxvt. So if you do not have URxvt, either install it or change the configuration file before starting. If you need to exit Subtle press Super+Ctrl+q
.
Basic function
When windows are opened they are matched against a set of user-defined rules to get proper position and size. The process of applying these rules can be broken down in three main parts:
- View
- Gravity
- Tag
Views are the environment in which the windows will be placed. Much like ordinary desktop surfaces. Defining the actual rules for a window is accomplished with a tag. In tags you also determine the gravity to be used. Gravities control the size and position of windows.
Configuration
Subtle will search for subtle.rb
in your $XDG_CONFIG_HOME path. If it is non-existant it will load a default file from your $XDG_CONFIG_DIRS path. It is preferable to copy this file to your $XDG_CONFIG_HOME/subtle
directory instead of using the default.
The default file will contain numerous gravities, tags and views. This is an excellent place to start when designing your own environment. Applications without matching tags will be placed on the view containing the default tag, if no view posses it, they are automatically placed on the first view.
To check your configuration file for potential errors, simply run the following command:
$ subtle -k
Sublets
Sublets are tiny apps that appear in the Subtle panels. They can be used to control various applications and show system stats.
Installing sublets
To install a sublet, type the following command in a terminal:
$ sur install <name of sublet>
For a list of sublets, go to the sur website.
Enabling sublets
By default all sublets are displayed in the top right corner. You can change this behavior in subtle.rb
by removing :sublets
from the screen configuration and adding your sublets like this:
screen 1 do top [ :title, :spacer, :views ] bottom [ :mpd, :wifi, :battery ] end
Then just add the sublets name in the same fashion as the other ones, like this:
bottom [ :mpd, :<name of sublet>, :wifi, :battery ]
It can of course be inserted at a place by your own choice.