summaryrefslogtreecommitdiffstats
path: root/.config/herbstluftwm
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-02-06 22:28:14 +0100
committerGravatar Tom Willemsen2012-02-06 22:28:14 +0100
commitf2604da83588aad7af6d723ff4603d71d1982d9e (patch)
treeb0b8bec43c041c5098b7cb3cd40f9681a456abc0 /.config/herbstluftwm
parent9f48c01515dbe6b88e6c847f62bbc7bbcc9b08b0 (diff)
downloaddotfiles-f2604da83588aad7af6d723ff4603d71d1982d9e.tar.gz
dotfiles-f2604da83588aad7af6d723ff4603d71d1982d9e.zip
PANEL: Change it all again
Diffstat (limited to '.config/herbstluftwm')
-rwxr-xr-x.config/herbstluftwm/panel.sh138
1 files changed, 94 insertions, 44 deletions
diff --git a/.config/herbstluftwm/panel.sh b/.config/herbstluftwm/panel.sh
index 14080b9..38c365f 100755
--- a/.config/herbstluftwm/panel.sh
+++ b/.config/herbstluftwm/panel.sh
@@ -10,7 +10,7 @@ fi
# geometry has the format: WxH+X+Y
x=${geometry[0]}
width=${geometry[2]}
-height=1
+height=12
y=$(expr ${geometry[3]} - $height)
tag_width=40
font="-misc-tamsyn-medium-r-normal-*-14-*-*-*-*-*-iso8859-*"
@@ -25,6 +25,96 @@ function uniq_linebuffered() {
awk '$0 != l { print ; l=$0 ; fflush(); }' "$@"
}
+function print_tags() {
+ # draw tags
+ echo -n "$separator"
+ for i in "${TAGS[@]}" ; do
+ if [[ "${TAGS2[@]}" == *"#${i:1}"* ]]; then
+ echo -n "^bg($selcolor)^fg(#000000) ${i:1} ^fg()^bg()"
+# echo -n "^fg($selcolor)^ro(${tag_width}x$height)^fg()"
+ elif [[ "${TAGS2[@]}" == *"+${i:1}"* ]]; then
+ echo -n "^bg($locolor)^fg(#000000) ${i:1} ^fg()^bg()"
+# echo -n "^fg($locolor)^ro(${tag_width}x$height)^fg()"
+ else
+ case ${i:0:1} in
+ '#')
+ echo -n "^bg($selcolor)^fg(#000000) ${i:1} ^fg()^bg()"
+# echo -n "^fg($selcolor)^ro(${tag_width}x$height)^fg()"
+ ;;
+ '+')
+ echo -n "^bg($locolor)^fg(#000000) ${i:1} ^fg()^bg()"
+# echo -n "^fg($locolor)^ro(${tag_width}x$height)^fg()"
+ ;;
+ ':')
+ echo -n "^bg($hicolor)^fg(#000000) ${i:1} ^fg()^bg()"
+# echo -n "^fg($hicolor)^ro(${tag_width}x$height)^fg()"
+ ;;
+ '!')
+ echo -n "^bg($urcolor)^fg(#000000) ${i:1} ^fg()^bg()"
+# echo -n "^fg($urcolor)^ro(${tag_width}x$height)^fg()"
+ ;;
+ *)
+ echo -n "^bg($bgcolor)^fg(#ffffff) ${i:1} ^fg()^bg()"
+# echo -n "^bg()^fg($bgcolor)^ro(${tag_width}x$height)^fg()"
+ ;;
+ esac
+ fi
+ echo -n "$separator"
+ done
+}
+
+function print_mailboxes() {
+ mailboxes=(ninthfloor gmail arch aethon ryuslash.org)
+ mailtxt=""
+ for j in "${mailboxes[@]}"; do
+ mailfile="$HOME/documents/mail/$j/INBOX/new/"
+ mailcnt=$(ls $mailfile | wc -l)
+
+ if [ $mailcnt -gt 0 ]; then
+ mailsha1=$(echo $j | sha1sum)
+ mailcolor="#${mailsha1:0:6}"
+ else
+ mailcolor=$bgcolor
+ fi
+
+ mailtxt="$mailtxt${separator}^bg($mailcolor)^fg(#ffffff) $j ^fg()^bg()"
+# echo -n "^fg($mailcolor)^ro(${tag_width}x$height)^fg()$separator"
+ done
+ mailtxt_only=$(echo -n "$mailtxt" | sed 's.\^[^(]*([^)]*)..g')
+ let mailtxt_width=$(textwidth "$font" "$mailtxt_only")+20
+ echo -n "^p(_RIGHT)^p(-$mailtxt_width)$mailtxt"
+}
+
+function print_services() {
+ services=(emacs httpd mysqld dunst xbindkeys mpdscribble sshd mpd)
+ servicetxt=""
+ for j in "${services[@]}"; do
+ servicetxt="$servicetxt$separator$(status $j)"
+ done
+ servicetxt_only=$(echo -n "$servicetxt" | sed 's.\^[^(]*([^)]*)..g')
+ let servicetxt_width=$(textwidth "$font" "$servicetxt_only")/2
+
+ echo -n "^p(_CENTER)^p(-$servicetxt_width)$servicetxt"
+}
+
+function status()
+{
+ running=$(${1}_running 2>/dev/null || pidof $1)
+
+ if [ -n "$running" ]; then
+ color="darkgreen"
+ else
+ color="darkred"
+ fi
+
+ echo -n "^bg($color)^fg(#ffffff) $1 ^fg()^bg()"
+}
+
+function emacs_running()
+{
+ ps ax | awk '{ print $5 " " $6 }' | grep -E "^emacs --daemon"
+}
+
herbstclient pad $monitor -5 -5 $(expr -5 + $height) -5
herbstclient pad $monitor2 -5 -5 -5 -5
{
@@ -36,50 +126,10 @@ herbstclient pad $monitor2 -5 -5 -5 -5
TAGS2=( $(herbstclient tag_status $monitor2) )
while true ; do
separator="^fg($bgcolor)^ro(1x$height)^fg()"
- # draw tags
- echo -n "$separator"
- for i in "${TAGS[@]}" ; do
- if [[ "${TAGS2[@]}" == *"#${i:1}"* ]]; then
- echo -n "^fg($selcolor)^ro(${tag_width}x$height)^fg()"
- elif [[ "${TAGS2[@]}" == *"+${i:1}"* ]]; then
- echo -n "^fg($locolor)^ro(${tag_width}x$height)^fg()"
- else
- case ${i:0:1} in
- '#')
- echo -n "^fg($selcolor)^ro(${tag_width}x$height)^fg()"
- ;;
- '+')
- echo -n "^fg($locolor)^ro(${tag_width}x$height)^fg()"
- ;;
- ':')
- echo -n "^fg($hicolor)^ro(${tag_width}x$height)^fg()"
- ;;
- '!')
- echo -n "^fg($urcolor)^ro(${tag_width}x$height)^fg()"
- ;;
- *)
- echo -n "^bg()^fg($bgcolor)^ro(${tag_width}x$height)^fg()"
- ;;
- esac
- fi
- echo -n "$separator"
- done
-
- mailboxes=(ninthfloor gmail arch aethon ryuslash.org)
- echo -n "^p(_RIGHT)^p(-$(expr $tag_width \* ${#mailboxes[@]} + 5))"
- for j in "${mailboxes[@]}"; do
- mailfile="$HOME/documents/mail/$j/INBOX/new/"
- mailcnt=$(ls $mailfile | wc -l)
-
- if [ $mailcnt -gt 0 ]; then
- mailsha1=$(echo $j | sha1sum)
- mailcolor="#${mailsha1:0:6}"
- else
- mailcolor=$bgcolor
- fi
+ print_tags
+ print_services
+ print_mailboxes
- echo -n "^fg($mailcolor)^ro(${tag_width}x$height)^fg()$separator"
- done
echo
# wait for next event
read line || break