diff options
author | Florian Pritz <f-p@gmx.at> | 2009-04-08 23:00:20 +0200 |
---|---|---|
committer | Florian Pritz <f-p@gmx.at> | 2009-04-08 23:00:20 +0200 |
commit | 5f2521d22679a33f66dd0e46d5d2624efcb37fd1 (patch) | |
tree | 3af6f979c8ead3f5f59b0d20724e26e50a61ccee | |
parent | f80a9f3e40d8bc618ca5c60ad1f3df8551617ccd (diff) | |
download | dotfiles-5f2521d22679a33f66dd0e46d5d2624efcb37fd1.tar.gz dotfiles-5f2521d22679a33f66dd0e46d5d2624efcb37fd1.tar.xz |
switch to stalometray and moved conky configs to .config/conky
-rw-r--r-- | .config/conky/main (renamed from .conkyrc) | 2 | ||||
-rw-r--r-- | .config/conky/time | 38 | ||||
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | .xinitrc | 9 |
4 files changed, 49 insertions, 6 deletions
diff --git a/.conkyrc b/.config/conky/main index 541e218..d80d0ef 100644 --- a/.conkyrc +++ b/.config/conky/main @@ -1,5 +1,5 @@ #---------------------------------------------------- -# File: .conkyrc +# File: conky/main # Version: 0.2 # Author: Florian "Bluewind" Pritz <f-p@gmx.at> #---------------------------------------------------- diff --git a/.config/conky/time b/.config/conky/time new file mode 100644 index 0000000..a1d019f --- /dev/null +++ b/.config/conky/time @@ -0,0 +1,38 @@ +#---------------------------------------------------- +# File: conky/time +# Version: 0.2 +# Author: Florian "Bluewind" Pritz <f-p@gmx.at> +#---------------------------------------------------- +background no +use_xft yes +xftfont arial:size=9 +xftalpha 0.8 +update_interval 1.0 +total_run_times 0 +own_window yes +own_window_type normal +own_window_transparent yes +own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager +double_buffer yes +minimum_size 220 5 +maximum_width 350 +draw_shades yes +draw_outline no +draw_borders no +stippled_borders 0 +border_margin 0 +border_width 0 +default_color #111111 +default_shade_color black +default_outline_color blue +alignment bottom_left +gap_x 1680 +gap_y 25 +no_buffers yes +uppercase no +cpu_avg_samples 2 +net_avg_samples 2 +override_utf8_locale no + +TEXT +${time} @@ -1,6 +1,6 @@ * -!.zsh/ +!.zsh/* !.zshrc !.gitignore @@ -10,11 +10,13 @@ !.xinitrc !.pypanelrc -!.conkyrc !.screenrc !.Xdefaults !.gtkrc-2.0 + !.config/awesome/rc.lua +!.config/conky/* + !.motd !.htoprc @@ -19,15 +19,18 @@ chat_terminal () { urxvt -g 125x+45+0+0 -e ssh mistral } -autostart () { - conky & +autostart () { + for f in $XDG_CONFIG_HOME/conky/*; do + conky -c "$f" & + done gajim & #urxvtc -e $HOME/bin/screen.sh 2 & chat_terminal & ossxmix -b & thunderbird & thunar --daemon & - (sleep 3 && pypanel) & + stalonetray -w -p & + #(sleep 3 && pypanel) & #xfce4-panel & #fbpanel & #fsniper --daemon |