You are not logged in.
May you post your tint2rc and your conkyrc?
Offline
Hi (again) weakhead,
It's just Tint2 + Conky
May I ask what's your panel on your previous screenshots? Don't you use any tray?
Thanks for info.
Top panel is just a dock of Openbox with single Conky in it.
Bottom Panel is pure BMPanel2 with desktop switcher, taskbar and systray.
Offline
paschalis.m wrote:May you post your tint2rc and your conkyrc?
tint2rc
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
rounded = 0
border_width = 0
background_color = #393939 100
border_color = #393939 0
rounded = 0
border_width = 0
background_color = #393939 100
border_color = #393939 100
rounded = 0
border_width = 0
background_color = #393939 100
border_color = #393939 100
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = top left horizontal
panel_size = 50% 20
panel_margin = 390 0
panel_padding = 0 0
font_shadow = 0
panel_background_id = 1
wm_menu = 0
#---------------------------------------------
# TASKBAR
#---------------------------------------------
#taskbar_mode = multi_desktop
taskbar_mode = single_desktop
taskbar_padding = 0 1 0
taskbar_background_id = 0
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 0
task_text = 1
task_width = 150
task_centered = 1
task_padding = 0 0
task_font = Droid Sans 7.5
task_font_color = #808080 90
task_active_font_color = #ffffff 100
task_background_id = 3
task_active_background_id = 2
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray_padding = 0 2 0
systray_background_id = 0
#---------------------------------------------
# CLOCK
#---------------------------------------------
#time1_format = %H:%M
#time1_font = Droid Sans bold 9
#clock_font_color = #808080 76
#clock_padding = 3 0
#clock_background_id = 1
#clock_lclick_command = xclock
#clock_rclick_command = orage
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
bat1_font = Droid Sans 8
bat2_font = Droid Sans 6
battery_font_color = #ffffff 76
battery_padding = 0 0
battery_background_id = 1
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = toggle
mouse_scroll_up = toggle
mouse_scroll_down = iconify
conkyrc
use_xft yes
xftfont Droid Sans:style=bold:size=7.2
update_interval 2
total_run_times 0
double_buffer yes
own_window_colour 393939
own_window yes
own_window_type normal
own_window_transparent no
own_window_hints undecorated,below,skip_taskbar,skip_pager
minimum_size 1358 0
default_color ECEDEE
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
color0 D8D8D8
color1 808080
color2 E6E6E6
alignment top_middle
gap_y 2
gap_x 2
net_avg_samples 2
override_utf8_locale yes
no_buffers yes
# ${color1}MPD:${color0}${mpd_title} ${color1}by ${color0}${mpd_artist}
# ${color1}Temp:${color0}${acpitemp} ${color1}HddTemp:${color0}${execi 120 hddtemp /dev/sda -n --unit=C} ${color1}GpuTemp:${color0}${execi 60 nvidia-settings -q gpucoretemp |grep '):' | cut -d ' ' -f 6,6 | sed -e 's/.\{1\}$//'}
# ${color1}WIFI:${color0}${wireless_link_qual wlan0}% ${color1}WEATHER:${color0}${execi 3600 /home/paschalis/scripts/weather.sh "<<location code>>"}
TEXT
${color1}CPU1:${color0}${cpu cpu1}% ${color1}CPU2:${color0}${cpu cpu2}% ${color1}FREQ:${color0}${execi 5 ~/scripts/cpu_mhz}GHz ${color1}RAM:${color0}${mem} ${color1}TEMP:${color0}${acpitemp}°C ${color1}SDA:${color0}${execi 120 hddtemp /dev/sda -n --unit=C}°C ${color1}GPU:${color0}${execi 60 nvidia-settings -q gpucoretemp |grep '):' | cut -d ' ' -f 6,6 | sed -e 's/.\{1\}$//'}°C ${alignr 4}${color1}PACMAN:${color0}${execi 900 ~/scripts/pacman-updates.pl} ${color1}EMAIL:${color0}${execi 300 perl ~/scripts/gmail.pl n} ${color1}BAT:${color0}${battery_percent}% ${color1}:: ${color0}${time %d %b %Y, %H:%M}
~/scripts/weather.sh
#!/bin/sh
#AccuWeather (r) RSS weather tool for conky
#
#USAGE: weather.sh <locationcode>
#
#(c) Michael Seiler 2007
METRIC=1 #Should be 0 or 1; 0 for F, 1 for C
if [ -z $1 ]; then
echo
echo "USAGE: weather.sh <locationcode>"
echo
exit 0;
fi
curl -s http://rss.accuweather.com/rss/liveweather_rss.asp\?metric\=${METRIC}\&locCode\=$1 | perl -ne 'if (/Currently/) {chomp;/\<title\>Currently: (.*)?\<\/title\>/; print "$1"; }'
~/scripts/pacman-updates.pl
#!/usr/bin/perl
## script by Xyne
## http://bbs.archlinux.org/viewtopic.php?id=57291
use strict;
use warnings;
my $n = (`pacman -Qu | wc -l`);
chomp ($n);
if ($n == 0)
{
print "0"
}
elsif($n == 1)
{
print "1"
}
else
{
print "$n"
}
~/scripts/gmail.pl
#http://ubuntuforums.org/showthread.php?t=680265
#!/usr/bin/perl
use Switch;
use Text::Wrap;
my $what=$ARGV[0];
$user="<<<username>>>"; #username for gmail account
$pass="<<<password>>>"; #password for gmail account
$file="/tmp/gmail.html"; #temporary file to store gmail
#wrap format for subject
$Text::Wrap::columns=65; #Number of columns to wrap subject at
$initial_tab=""; #Tab for first line of subject
$subsequent_tab="\t"; #tab for wrapped lines
$quote="\""; #put quotes around subject
#limit the number of emails to be displayed
$emails=4; #if -1 display all emails
&passwd; #give password the proper url character encoding
switch($what){ #determine what the user wants
case "n" {&gmail; print "$new\n";} #print number of new emails
case "s" { #print $from and $subj for new email
&gmail;
if ($new>0){
my $size=@from;
if ($emails!=-1 && $size>$emails){$size=$emails;} #limit number of emails displayed
for(my $i=0; $i<$size; ++$i){
print "From: $from[$i]\n"; #print from line
$text=$quote.$subj[$i].$quote."\n";
print wrap($initial_tab, $subsequent_tab, $text); #print subject with word wrap
}
$size=@from;
if ($emails!=-1 && $size >$emails){print "$emails out of $size new emails displayed\n";}
}
}
case "e" { #print number of new emails, $from, and $subj
&gmail;
if($new==0){print "You have no new emails.\n";}
else{
print "You have $new new email(s).\n";
my $size=@from;
if ($emails!=-1 && $size>$emails){$size=$emails;} #limit number of emails displayed
for(my $i=0; $i<$size; ++$i){
print "From: $from[$i]\n"; #print from line
$text=$quote.$subj[$i].$quote;
print wrap($initial_tab, $subsequent_tab, $text); #print subject with word wrap
}
$size=@from;
if ($emails!=-1 && $size >$emails){print "$emails out of $size new emails displayed\n";}
}
}
else {
print "Usage Error: gmail.pl <option>\n";
print "\tn displays number of new emails\n";
print "\ts displays from line and subject line for each new email.\n";
print "\te displays the number of new emails and from line plus \n";
print "\t\tsubject line for each new email.\n";
} #didn't give proper option
}
sub gmail{
if(!(-e $file)){ #create file if it does not exists
`touch $file`;
}
#get new emails
`wget -O - https://$user:$pass\@mail.google.com/mail/feed/atom --no-check-certificate> $file`;
open(IN, $file); #open $file
my $i=0; #initialize count
$new=0; #initialize new emails to 0
my $flag=0;
while(<IN>){ #cycle through $file
if(/<entry>/){$flag=1;}
elsif(/<fullcount>(\d+)<\/fullcount>/){$new=$1;} #grab number of new emails
elsif($flag==1){
if(/<title>.+<\/title>/){push(@subj, &msg);} #grab new email titles
elsif(/<name>(.+)<\/name>/){push(@from, $1); $flag=0;} #grab new email from lines
}
}
close(IN); #close $file
}
sub passwd{ #change to url escape codes in password
#URL ESCAPE CODES
$_=$pass;
s/\%/\%25/g;
s/\#/\%23/g;
s/\$/\%24/g;
s/\&/\%26/g;
s/\//\%2F/g;
s/\:/\%3A/g;
s/\;/\%3B/g;
s/\</\%3C/g;
s/\=/\%3D/g;
s/\>/\%3E/g;
s/\?/\%3F/g;
s/\@/\%40/g;
s/\[/\%5B/g;
s/\\/\%5C/g;
s/\]/\%5D/g;
s/\^/\%5E/g;
s/\`/\%60/g;
s/\{/\%7B/g;
s/\|/\%7C/g;
s/\}/\%7D/g;
s/\~/\%7E/g;
$pass=$_;
}
sub msg{
#THE HTML CODED CHARACTER SET [ISO-8859-1]
chomp; s/<title>(.+)<\/title>/$1/; #get just the subject
#now replace any special characters
s/\&\#33\;/!/g; #Exclamation mark
s/\&\#34\;/"/g; s/\"\;/"/g; #Quotation mark
s/\&\#35\;/#/g; #Number sign
s/\&\#36\;/\$/g; #Dollar sign
s/\&\#37\;/%/g; #Percent sign
s/\&\#38\;/&/g; s/\&\;/&/g; #Ampersand
s/\&\#39\;/'/g; #Apostrophe
s/\&\#40\;/(/g; #Left parenthesis
s/\&\#41\;/)/g; #Right parenthesis
s/\&\#42\;/*/g; #Asterisk
s/\&\#43\;/+/g; #Plus sign
s/\&\#44\;/,/g; #Comma
s/\&\#45\;/-/g; #Hyphen
s/\&\#46\;/./g; #Period (fullstop)
s/\&\#47\;/\//g; #Solidus (slash)
s/\&\#58\;/:/g; #Colon
s/\&\#59\;/\;/g; #Semi-colon
s/\&\#60\;/</g; s/\<\;/</g; #Less than
s/\&\#61\;/=/g; #Equals sign
s/\&\#62\;/>/g; s/\>\;/>/g; #Greater than
s/\&\#63\;/\?/g; #Question mark
s/\&\#64\;/\@/g; #Commercial at
s/\&\#91\;/\[/g; #Left square bracket
s/\&\#92\;/\\/g; #Reverse solidus (backslash)
s/\&\#93\;/\]/g; #Right square bracket
s/\&\#94\;/\^/g; #Caret
s/\&\#95\;/_/g; #Horizontal bar (underscore)
s/\&\#96\;/\`/g; #Acute accent
s/\&\#123\;/\{/g; #Left curly brace
s/\&\#124\;/|/g; #Vertical bar
s/\&\#125\;/\}/g; #Right curly brace
s/\&\#126\;/~/g; #Tilde
s/\&\#161\;/¡/g; #Inverted exclamation
s/\&\#162\;/¢/g; #Cent sign
s/\&\#163\;/£/g; #Pound sterling
s/\&\#164\;/¤/g; #General currency sign
s/\&\#165\;/¥/g; #Yen sign
s/\&\#166\;/¦/g; #Broken vertical bar
s/\&\#167\;/§/g; #Section sign
s/\&\#168\;/¨/g; #Umlaut (dieresis)
s/\&\#169\;/©/g; s/\©\;/©/g; #Copyright
s/\&\#170\;/ª/g; #Feminine ordinal
s/\&\#171\;/«/g; #Left angle quote, guillemotleft
s/\&\#172\;/¬/g; #Not sign
s/\&\#174\;/®/g; #Registered trademark
s/\&\#175\;/¯/g; #Macron accent
s/\&\#176\;/°/g; #Degree sign
s/\&\#177\;/±/g; #Plus or minus
s/\&\#178\;/²/g; #Superscript two
s/\&\#179\;/³/g; #Superscript three
s/\&\#180\;/´/g; #Acute accent
s/\&\#181\;/µ/g; #Micro sign
s/\&\#182\;/¶/g; #Paragraph sign
s/\&\#183\;/·/g; #Middle dot
s/\&\#184\;/¸/g; #Cedilla
s/\&\#185\;/¹/g; #Superscript one
s/\&\#186\;/º/g; #Masculine ordinal
s/\&\#187\;/»/g; #Right angle quote, guillemotright
s/\&\#188\;/¼/g; s/\¼\;/¼/g; # Fraction one-fourth
s/\&\#189\;/½/g; s/\½\;/½/g; # Fraction one-half
s/\&\#190\;/¾/g; s/\¾\;/¾/g; # Fraction three-fourths
s/\&\#191\;/¿/g; #Inverted question mark
s/\&\#192\;/À/g; #Capital A, grave accent
s/\&\#193\;/Á/g; #Capital A, acute accent
s/\&\#194\;/Â/g; #Capital A, circumflex accent
s/\&\#195\;/Ã/g; #Capital A, tilde
s/\&\#196\;/Ä/g; #Capital A, dieresis or umlaut mark
s/\&\#197\;/Å/g; #Capital A, ring
s/\&\#198\;/Æ/g; #Capital AE dipthong (ligature)
s/\&\#199\;/Ç/g; #Capital C, cedilla
s/\&\#200\;/È/g; #Capital E, grave accent
s/\&\#201\;/É/g; #Capital E, acute accent
s/\&\#202\;/Ê/g; #Capital E, circumflex accent
s/\&\#203\;/Ë/g; #Capital E, dieresis or umlaut mark
s/\&\#204\;/Ì/g; #Capital I, grave accent
s/\&\#205\;/Í/g; #Capital I, acute accent
s/\&\#206\;/Î/g; #Capital I, circumflex accent
s/\&\#207\;/Ï/g; #Capital I, dieresis or umlaut mark
s/\&\#208\;/Ð/g; #Capital Eth, Icelandic
s/\&\#209\;/Ñ/g; #Capital N, tilde
s/\&\#210\;/Ò/g; #Capital O, grave accent
s/\&\#211\;/Ó/g; #Capital O, acute accent
s/\&\#212\;/Ô/g; #Capital O, circumflex accent
s/\&\#213\;/Õ/g; #Capital O, tilde
s/\&\#214\;/Ö/g; #Capital O, dieresis or umlaut mark
s/\&\#215\;/×/g; #Multiply sign
s/\&\#216\;/Ø/g; #Capital O, slash
s/\&\#217\;/Ù/g; #Capital U, grave accent
s/\&\#218\;/Ú/g; #Capital U, acute accent
s/\&\#219\;/Û/g; #Capital U, circumflex accent
s/\&\#220\;/Ü/g; #Capital U, dieresis or umlaut mark
s/\&\#221\;/Ý/g; #Capital Y, acute accent
s/\&\#222\;/Þ/g; #Capital THORN, Icelandic
s/\&\#223\;/ß/g; #Small sharp s, German (sz ligature)
s/\&\#224\;/à/g; #Small a, grave accent
s/\&\#225\;/á/g; #Small a, acute accent
s/\&\#226\;/â/g; #Small a, circumflex accent
s/\&\#227\;/ã/g; #Small a, tilde
s/\&\#228\;/ä/g; #Small a, dieresis or umlaut mark
s/\&\#229\;/å/g; #Small a, ring
s/\&\#230\;/æ/g; #Small ae dipthong (ligature)
s/\&\#231\;/ç/g; #Small c, cedilla
s/\&\#232\;/è/g; #Small e, grave accent
s/\&\#233\;/é/g; #Small e, acute accent
s/\&\#234\;/ê/g; #Small e, circumflex accent
s/\&\#235\;/ë/g; #Small e, dieresis or umlaut mark
s/\&\#236\;/ì/g; #Small i, grave accent
s/\&\#237\;/í/g; #Small i, acute accent
s/\&\#238\;/î/g; #Small i, circumflex accent
s/\&\#239\;/ï/g; #Small i, dieresis or umlaut mark
s/\&\#240\;/ð/g; #Small eth, Icelandic
s/\&\#241\;/ñ/g; #Small n, tilde
s/\&\#242\;/ò/g; #Small o, grave accent
s/\&\#243\;/ó/g; #Small o, acute accent
s/\&\#244\;/ô/g; #Small o, circumflex accent
s/\&\#245\;/õ/g; #Small o, tilde
s/\&\#246\;/ö/g; #Small o, dieresis or umlaut mark
s/\&\#247\;/÷/g; #Division sign
s/\&\#248\;/ø/g; #Small o, slash
s/\&\#249\;/ù/g; #Small u, grave accent
s/\&\#250\;/ú/g; #Small u, acute accent
s/\&\#251\;/û/g; #Small u, circumflex accent
s/\&\#252\;/ü/g; #Small u, dieresis or umlaut mark
s/\&\#253\;/ý/g; #Small y, acute accent
s/\&\#254\;/þ/g; #Small thorn, Icelandic
s/\&\#255\;/ÿ/g; #Small y, dieresis or umlaut mark
s/^\s+//;
return $_;
}
~/scripts/cpu_mhz
#!/bin/awk -f
BEGIN {
CPU_MHZ_CMD = "cat /proc/cpuinfo |grep MHz"; # CPU MHz
CPU_MHZ_CMD | getline;
close(CPU_MHZ_CMD);
mhz = sprintf("%1.1f", ($4 / 1000));
print mhz;
}
/etc/cron.hourly/pmupdate.sh
#!/bin/bash
pacman -Sy 1>/dev/null 2>&1
Last edited by paschalis.m (2010-01-24 20:47:40)
Offline
Thanks for info.
You mean this one?
http://s6.tinypic.com/ak9ydz_th.jpgTop panel is just a dock of Openbox with single Conky in it.
Bottom Panel is pure BMPanel2 with desktop switcher, taskbar and systray.
What's "dock of Openbox"? How can I use it?
Offline
weakhead wrote:Thanks for info.
You mean this one?
http://s6.tinypic.com/ak9ydz_th.jpgTop panel is just a dock of Openbox with single Conky in it.
Bottom Panel is pure BMPanel2 with desktop switcher, taskbar and systray.What's "dock of Openbox"? How can I use it?
Dock is a place for dockapps - little applications written to sit in dock
Conky can be configured to sit in dock. This way, it has nice border (border of dock, rendered by Openbox theme engine).
No wonder you didn't heard about it, dock is almost forgotten today
I think that most of Window Managers support dock,but it may be called differently (slit in Fluxbox, Harbour in PekWM, etc.).
Offline
There is also a tab called "dock" on obconf
Thank you.
Offline
Does anyone know how I can remove the selected border when there's only one window open in tile mode? See the "two" tag in the screenshot if you don't know what I mean. This was default back in ~5.4.
edit: typo
Last edited by oew (2010-01-25 02:35:54)
there's no place like ~/
Offline
weakhead wrote:paschalis.m wrote:Good one.
What is that panel? BMPanel2 + Conky? Tint2 + Conky? Xfce4-panel + Conky (swallower applet?)...?
I'm curious, it's pretty nice.Hi (again) weakhead,
It's just Tint2 + Conky
May I ask what's your panel on your previous screenshots? Don't you use any tray?
Hi, your tint2+conky setup looks really awesome! I have been wondering how to concatonate/integrate conky into tint2. Do you mind explaining me how you accomplished this? Thanks beforehand
Offline
Not much has changed, different font and a very nice vim colorscheme thanks to unexist
Nice one.
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
Hi, your tint2+conky setup looks really awesome! I have been wondering how to concatonate/integrate conky into tint2. Do you mind explaining me how you accomplished this? Thanks beforehand
I've already posted my tint2rc + conkyrc. Tint2 runs above conky, both have the same color and height.
I'm also using xcompmgr, so I removed tint2 shadow with "-C" parameter
xcompmgr -c -t-5 -l-5 -r4.2 -o.55 -C
Nothing special at all.
Offline
Offline
http://i60.photobucket.com/albums/h3/bu … 5-1124.png
i keep coming back to ratpoison
,,in a good way!
Nice movie for sure! Why ratpoison?
Offline
Offline
milomouse wrote:http://i60.photobucket.com/albums/h3/bu … 5-1124.png
i keep coming back to ratpoison
,,in a good way!Nice movie for sure!
Why ratpoison?
Sure is. Well, from a user level, ratpoison has an almost unlimited amount of key-binding power, amplified with the use of hooks and keymaps, and has handy built-in commands (not overkill though) like using hints to swap windows[1]<with>window[6] and a windows display list. I also like it because it's very small, has no statusbar, has optional workspaces and/or groups, you can configure "layouts" (also through bindings, also optional), move windows across workspaces, and has undo + redo (which is always useful). This is a good deal of it, but no means a "blurb", these are simply features it offers and I respond to.
Offline
unexist wrote:milomouse wrote:http://i60.photobucket.com/albums/h3/bu … 5-1124.png
i keep coming back to ratpoison
,,in a good way!Nice movie for sure!
Why ratpoison?
Sure is.
Well, from a user level, ratpoison has an almost unlimited amount of key-binding power, amplified with the use of hooks and keymaps, and has handy built-in commands (not overkill though) like using hints to swap windows[1]<with>window[6] and a windows display list. I also like it because it's very small, has no statusbar, has optional workspaces and/or groups, you can configure "layouts" (also through bindings, also optional), move windows across workspaces, and has undo + redo (which is always useful). This is a good deal of it, but no means a "blurb", these are simply features it offers and I respond to.
Heh, well I never tried ratpoison since I am in love with subtle, obviously. I guess named things could be done in many wms with just a few lines of script. What is undo and redo in ratpoison?
Offline
Heh, well I never tried ratpoison since I am in love with subtle, obviously. I guess named things could be done in many wms with just a few lines of script. What is undo and redo in ratpoison?
Say there's a grid of 4 frames with their own geometry and you remove one making it 3 frames. You have the option to "undo" that action and go back to the 4 frames (with the same geometry and window state as before), and if you want you can "redo" your action and collapse the frame again, removing that specific frame as before. It's basically toggling between two states and isn't anything miraculous as far as coding goes but I find it rather useful.
And without going too far off topic, I just want to say that I've tried Subtle and remember thoroughly enjoying it, I just wasn't a big fan of the tagging system, I ended up throwing all my programs into all the tags.
Here was my first experience with it. Hmm, movie's have strangely similar appearance, heh.
Last edited by milomouse (2010-01-25 22:40:40)
Offline
unexist wrote:Heh, well I never tried ratpoison since I am in love with subtle, obviously. I guess named things could be done in many wms with just a few lines of script. What is undo and redo in ratpoison?
Say there's a grid of 4 frames with their own geometry and you remove one making it 3 frames. You have the option to "undo" that action and go back to the 4 frames (with the same geometry and window state as before), and if you want you can "redo" your action and collapse the frame again, removing that specific frame as before. It's basically toggling between two states and isn't anything miraculous as far as coding goes but I find it rather useful.
And without going too far off topic, I just want to say that I've tried Subtle and remember thoroughly enjoying it, I just wasn't a big fan of the tagging system, I ended up throwing all my programs into all the tags.
http://i60.photobucket.com/albums/h3/bu … _mouse.png
Here was my first experience with it.Hmm, movie's have strangely similar appearance, heh.
I like this alot. gonna have to give Subtle a try. Im very fond of wmii switched to it from fluxbox and just cant seem to change from wmii.
I also very much like pekwm. I use pekwm on my MediaCenter
...MikereDD
:Go Away & Give My Pillow Back!!:
aur pkgbuilds - mostly fortune-mod's & fonts
Offline
unexist wrote:Heh, well I never tried ratpoison since I am in love with subtle, obviously. I guess named things could be done in many wms with just a few lines of script. What is undo and redo in ratpoison?
Say there's a grid of 4 frames with their own geometry and you remove one making it 3 frames. You have the option to "undo" that action and go back to the 4 frames (with the same geometry and window state as before), and if you want you can "redo" your action and collapse the frame again, removing that specific frame as before. It's basically toggling between two states and isn't anything miraculous as far as coding goes but I find it rather useful.
And without going too far off topic, I just want to say that I've tried Subtle and remember thoroughly enjoying it, I just wasn't a big fan of the tagging system, I ended up throwing all my programs into all the tags.
http://i60.photobucket.com/albums/h3/bu … _mouse.png
Here was my first experience with it.Hmm, movie's have strangely similar appearance, heh.
How often do you need such an option? I think it's kind of pointless, just sounds interesting as a feature on a paper.
Hm, looks like Coraline if you ask me. I know that you used subtle, that's why I said this, I have a good memory. Since your try a lot has changed, the appearance a bit and the gravities too. The tagging is the same, but more options are available in the config for placement. It's just a matter of definitiont though.
Offline
Offline
gtk zenburn
colors for terminal
! Zenburn color-scheme
urxvt*background: #3f3f3f
urxvt*foreground: #dcdccc
! black + red
!urxvt*color0: #3f3f3f
urxvt*color0: #1E2320
urxvt*color1: #705050
! green + yellow
urxvt*color2: #60b48a
urxvt*color3: #dfaf8f
! blue + purple
urxvt*color4: #506070
urxvt*color5: #dc8cc3
! cyan + white
urxvt*color6: #8cd0d3
urxvt*color7: #dcdccc
! bright-black + bright-red
urxvt*color8: #709080
urxvt*color9: #dca3a3
! bright-green + bright-yellow
urxvt*color10: #c3bf9f
urxvt*color11: #f0dfaf
! bright-blue + bright-purple
urxvt*color12: #94bff3
urxvt*color13: #ec93d3
! bright-cyan + bright-white
urxvt*color14: #93e0e3
urxvt*color15: #ffffff
Xdefaults
Xft.dpi: 96
Xft.antialias: true
Xft.rgba: rgb
Xft.hinting: true
Xft.hinstyle: hintslight
! -- Colours -- !
#include "/home/justin87/.colors/zenburn"
eval `dircolors -b ~/.dir_colors`
! -- Xterm settings -- !
xterm*toolBar: false
xterm*scrollBar: false
xterm*rightScrollBar: false
xterm*background: #1A1A1A
xterm*foreground: #A9A9A9
xterm*font:xft:Droid Sans :medium:pixelsize=8
xterm*geometry: 80x30
URxvt*font: xft:Terminus:size=7
URxvt*saveLines: 32767
URxvt*scrollBar: false
URxvt*scrollBar_right: true
URxvt*Borderless: true
URxvt*loginShell: true
!URxvt*termName: unicode-rxvt245color
URxvt*secondaryScroll: true
URxvt*perl-lib: /usr/lib/urxvt/perl/
URxvt*perl-ext-common: default,matcher,searchable-scrollback
URxvt*urlLauncher: chromium
URxvt*matcher.button: 1
URxvt*cutchars: `"()'*<>[]{|}
URxvt*visualBell: true
URxvt*keysym.C-u: perl:matcher
URxvt*urgentOnBell: true
urxvt*cursorColor: #8CD0D3
URxvt*background: #333333
URxvt*foreground: #DCDCCC
Offline