Project

General

Profile

unexist.dev

subtle

Assorted tidbits and projects

Icons, colors and dynamic

Added by Christoph Kappel over 13 years ago

The current devel version (r2429) brings more changes to the config, sorry.

Icons

The first, harmless thing is an addition to the icons: Before, only X BitMaps were allowed, but it's possible to use X PixMaps now, too. subtle can detect the file type and handle it accordingly. This doesn't sound like a big improvement and generally besides colors there isn't a big difference between bitmaps and pixmaps at all, icons can just be colorful.

Colors

In case you just updated and the current active client (title) is black on black, this is caused by another color change:

{{column(:start)}}

Old color names

#
#
#

color :panel_bg,     "#757575" 
color :panel_bg,     "#202020" 

{{column(:mid)}}

 

*>
*>
*>

=>
=>

{{column(:mid)}}

New color names

color :title_fg,     "#fecf35" 
color :title_bg,     "#202020" 
color :title_border, "#303030" 

color :stipple,      "#757575" 
color :panel,        "#202020" 

{{column(:end)}}

Dynamic

Welcome back, old and controversial feature - views can be dynamic again:

{{hide}}view "dynamic" do
  match   "xterm" 
  icon    "icon.xpm" 
  dynamic true
end

Comments