Description: Easy Listening Dark ___________________
A Lightweight Dark theme with easily visible (slightly high contrast) controls.
Why and how: [skip section if you are in hurry] ------------------------------------- I still live on a 128 MB RAM Laptop, using LXDE (Lightweight X11 Desktop Environment) which uses GTK2 and wanted a lightwieght, dark, elegant, theme where all controls are asily visible, as I usually keep the brightness of the screen very low.
After wasting about half a day on the search, I thought its better to create my own instead of wasting time searching. I ended up creating a negative of the "EasyListening" theme by "Holger Bauer (umarmung@email.de)".
I did this by running all the images through "convert" utility of ImageMagick.
[quote]for f in *.png ; do convert -negate $f $f ; done[/quote]
Then I reduced the contrast a bit using the -modulate option of convert in a similar way. I also ran them through -antialias of convert, though i have no clue if it was helpful.
Next, instead of editing each line of gtkrc by hand, i wrote some (hackish, extremely bad performace :-P ) code to negate each color.
[quote] lax@laxtop:~/scripts/gtkrc_color_batch$ cat gtkcol_colbatch.sh while read -e line do col="`printf '%s' '$line' | egrep -o '#[0-9a-fA-F]{6}'`" if [ `echo "$col"|grep -o '#'|wc -c` -ne 2 ] then printf '%sn' "$line" else col2=`echo $col|$1` printf '%sn' "$line" |sed s/$col/$col2/ fi done
Nope as I said in my notes above, it is LXDE Lightweight X11 Desktop Environment. But it uses GTK2+. And what I have released the theme as a GTK2+ theme. May be I should not have included a index.theme with it.
Ratings & Comments
2 Comments
Sorry, mate, I believe you, but...you know...?
Nope as I said in my notes above, it is LXDE Lightweight X11 Desktop Environment. But it uses GTK2+. And what I have released the theme as a GTK2+ theme. May be I should not have included a index.theme with it.