]> git.phdru.name Git - dotfiles.git/commitdiff
.xinitrc: calculate geometry for `xclock`
authorOleg Broytman <phd@phdru.name>
Fri, 27 Mar 2020 15:59:42 +0000 (18:59 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 27 Mar 2020 15:59:42 +0000 (18:59 +0300)
.xinitrc

index 4a1b23f6b801260d7d164e6f96c4b592be142258..664442e430c3cfa9d70965faaa3df9fe5a8c02ba 100644 (file)
--- a/.xinitrc
+++ b/.xinitrc
@@ -76,10 +76,16 @@ synclient AccelFactor=0.1 MaxDoubleTapTime=80 MaxSpeed=1 RightEdge=5000 \
 # start a small console shell
 #xterm -C -geometry 80x8-0+0 -n Console -T Consle -ls +ut -fn 6x10 &
 
-#WIDTH=1024: 85x85+400+1
-#WIDTH=1600: 100x100+600+1
-#WIDTH=1920: 150x150+880+1
-xclock -geometry 100x100+600+1 -bg white -update 1 &
+screen_width=`xrandr --current | head -1 | awk '{print $8}'`
+if [ $screen_width = 1024 ]; then
+   xclcok_geom=85x85+400+1
+elif [ $screen_width = 1600 ]; then
+   xclcok_geom=100x100+600+1
+elif [ $screen_width = 1920 ]; then
+   xclcok_geom=150x150+880+1
+fi
+test -n "$xclcok_geom" && xclock -geometry $xclcok_geom -bg white -update 1 &
+unset screen_width xclcok_geom
 
 # multi-biff
 #xbuffy -fn '-*-helvetica-bold-r-*-*-*-100-*-*-*-*-koi8-r' -geometry +0+125 -boxfile mail/misc/.xbuffyrc &