News
subtle: Panel padding and icons
The latest changes (r2400) just bring a bit more eyecandy to [[subtle]].
Padding¶
It's now possible to set the padding of the panel, additionally to the font size. This new option is named padding, the former padding option to reserve screenspace for e.g. additional panels was renamed to strut.
The order of padding values is: left, right, top, bottom
Icons¶
Also view buttons can now contain a pixmap icon, it basically uses the rendering of [[sublets]] and has therefore only a tiny overhead for users that don't need it. Views with icons can be defined in a similar way like properties in tags:
Numbers: on /off1 view "terms" do
2 match "terms"
3 icon "/usr/share/icons/icon.xbm"
4 end
subtle: More colors
The color names in [[subtle]] were a bit messy and without further explanation probably difficult to understand. r2260 comes with renamed color names, different border colors for every [[panel]] item and a new color for occupied views.
Occupied views are views with at least one visible client.
Here are the changes of the colors of the default color scheme:
Old color names
|
=> => *> => => *> *> *> *> => => *> => => *> => => => => <= == == |
New color names
|
subtle: Grabs in sublets
After a rewrite (r2204) of the ruby handling inside of [[subtle]], [[sublets]] can now use [[grabs]] too. The syntax is almost the same as for grabs inside of the config. Please be aware that there is no checking for duplicates, the last one wins.
Here is a short example:
Numbers: on /off1 configure :grabby do |s|
2 s.interval = 5
3 end
4
5 grab "A-b" do |s, c|
6 puts "sublet name: %s" % [ s.name ]
7 puts "pressed on : %s" % [ c.name ]
8 end
subtle: New multihead handling
Multihead¶
[[subtle]] finally has a proper screen handling, instead of using a hacky screen placement via [[tagging|tag]] properties, [[subtle]] displays a view per screen now. This also requires a more decent way to configure [[panel]], because there are two [[panel]] per screen. The new config option comes in the usual DSL style:
Numbers: on /off1 screen 1 do
2 stipple false
3 top [ :views, :title, :spacer, :tray, :sublets ]
4 bottom [ ]
5 end
Due the changes in the handling of screens, the :WindowScreen grab and the screen property of [[tags]] are now obsolete.
The [[panel]] wiki page has been updated accordingly.
Dynamic views¶
Dynamic views have been removed from [[subtle]], because the use of them is questionable and the overhead in the code just not acceptable.
Exclude match¶
[[Tagging|Tags]] support exclude matching now, that means it's possible to exclude a certain window from getting this [[tagging|tag]].
Numbers: on /off1 tag "exclude" do
2 match "urxvt"
3 exclude :instance => "irssi"
4 end
The [[tagging]] wiki page has been updated accordingly.
SubtletsReload and SubtleReload¶
The complex [[panel]] layout makes it impossible to reload just the [[sublets]], reload the config reloads the [[sublets]] anyway and therefore SubletsReload is obsolete.
subtle: Escape key
With r2166 there comes another way of defining [[grabs]]: The escape key.
Normally we would just add [[grabs]] with chains like grab "A-b", "urxvt" to get something that responds to a press of Alt-b. The drawback of this is that we need many different modifiers like using control, super etc. and we are probably limiting or even disturbing other programs and allows the usage of easier binds.
Now with the escape key we have a way to set a [[grabs|grab]] that needs to be pressed before any other [[grabs|grab]] can be used.
1 grab "C-y", :SubtleEscape
2 grab "Return", "urxvt"
3 grab "n", :ViewNext
4 grab "b", :ViewPrev
This is optional and per default commented out, the docs of the wiki and the default config have been updated accordingly.
subtle: Configuration of sublets
Until now configuring a [[sublets|sublet]] was a silly task, you had to open the [[sublets|sublet]] itself and update the code. This changes with r2148: I've added a new DSL command that allows configuring of a [[sublets|sublet]] from the main config of [[subtle]].
1 sublet :clock do
2 interval 30
3 format_string "%H:%S"
4 end
Currently there are only two [[sublets]] that support this new mechanism, but I will update my [[sublets]] asap. I will also add some more details in the notes section of the [[sublets|sublet]] to make it a b it easier to find what can be changed.
subtle: subtle and sur
Started as a side project [[sur]] evolved to be really useful over the time. There is no reason for [[sur]] to be a standalone package, only [[subtle]] users will install it anyway. I merged both packages in r2142 and updated some minor things that were of concern.
subtle: More config changes in r2089
Over the time the complexity of [[Tagging|tag]] properties steadily increased, it was time for a change. The new format combines regex and match properties and also adds the possibility to add more than one match to a [[Tagging|tag]].
Old configs are still useable, if there is a regex property found it will be used and a deprecation warning yielded.
Also it is now possible to set window types to tags, so subtle will treat this window as a window of specific type, e.g. as a desktop type window.
Here is a brief overview of the changes:
Old
|
New
|
And finally the type works like this:
1 tag "type" do
2 type :desktop
3 end
A complete list and updated docs can be found [[Tagging|here]].
subtle: New config format in r2000
Let's talk about the config in [[subtle]]:
Currently there are hashes, almost everything is a hash. This brings some benefits, especially for Ruby experts but also can be annoying for more complex things like a [[tagging|tag]] definition - even for me. On the contrary we have [[sublets]] with a fancy DSL so why not adding a DSL for the config too?
In fact there was a longer discussion about this topic in #subtle, there were votes for and votes against it but overall all agreed that there must be something new. After some thinking and talking there was and a consent and here is a comparison of the old and the new config:
Hash
|
DSL
|
The advantage of the new way should be clear, it's easy and even more readable. Another thing is the new DSL isn't limited to the config, it can also be used in [[sublets]]. So what about [[sublets]] that bring some own bindings?
Ok, but what does this mean for you?
It means migration from your old config to a new or using the new default config. This can be a annoying task, but to ease this there is a migration script that comes with [[subtle]]. It will be installed to /usr/share/subtle/scripts/migrate.rb
and can be run like:
ruby /usr/share/subtle/scripts/migrate.rb
This will automatically migrate your config, please make sure with subtle -k that the new config is fine before starting [[subtle]]. This script should cover most of the trivial things and create a backup of the older config typically $XDG_CONFIG_HOME/subtle/subtle.rb.old
or ~/.config/subtle/subtle.rb.old
.
subtle: New hooking system in r1979
Before this update there were two different machanisms to use [[hooks]]: The hash way in the config and the on :event blocks inside of [[sublets]]. To make it easier both ways are merged now: This means that in both config and [[sublets]] have the same syntax, besides the order and number of arguments.
The [[hooks]] page and the default config have been updated accordingly and show the list of possible hooks with a small description and an example.
Also available in: Atom