Created
April 9, 2012 23:07
-
-
Save webframp/2347251 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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