Skip to content

Instantly share code, notes, and snippets.

@webframp
Created April 9, 2012 23:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webframp/2347251 to your computer and use it in GitHub Desktop.
Save webframp/2347251 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Last Modified: 2009 Jan 30 Fri - 00:13:22
FG='#171717' # dark gray
W=1920
if [ `xrandr | grep -c 3840` -ne 0 ]; then
BG='#aeaeae' # light gray
X=1920
Y=0
else
BG='#cfbfad' # off white
X=0
Y=1770
fi
#FN='-*-terminus-*-*-*-*-14-*-*-*-*-*-*-*'
FN='inconsolata:size=14'
EXPAND=l # l or r if used
#EXEC='button1=exec:dzcalendar.sh'
#$HOME/scripts/dzstatprint.sh | dzen2 -ta r -bg $BG -fg $FG -fn $FN -expand $EXPAND -p -e $EXEC
$HOME/scripts/dzstatprint.sh | dzen2 -ta r -bg $BG -fg $FG -fn $FN -x $X -y $Y -w $W -p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment