diff options
Diffstat (limited to 'extras')
| -rw-r--r-- | extras/HOME/.xmobarrc | 10 | ||||
| -rwxr-xr-x | extras/HOME/.xmonad/xmobar-bluetooth | 4 | ||||
| -rwxr-xr-x | extras/HOME/.xmonad/xmobar-weather | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/extras/HOME/.xmobarrc b/extras/HOME/.xmobarrc index aa252f7..c536f7e 100644 --- a/extras/HOME/.xmobarrc +++ b/extras/HOME/.xmobarrc @@ -28,12 +28,12 @@ Config , sepChar = "%" , alignSep = "}{" , template = - " %logo% <fc=#a0a0a0><fn=3>%uname%</fn></fc><fc=#404040> │\ - \</fc>%UnsafeStdinReader%}\ + " %logo% <fc=#a0a0a0><fn=3>%uname%</fn></fc> \ + \%UnsafeStdinReader%}\ \{ %cpu% %memory% <fc=#404040>\ - \│</fc> %weather% <fc=#404040>│\ - \</fc> <fc=#a0a0a0>%media%</fc> <fc=#404040>│ \ - \</fc>%bluetooth%%bat% <fc=#404040>│</fc> <fn=2><fc=#606060>%time%</fc></fn> " + \ %weather% \ + \</fc> <fc=#a0a0a0>%media%</fc> \ + \%bluetooth%%bat% <fn=2><fc=#606060>%time%</fc></fn> " , commands = [ Run UnsafeStdinReader, Run Date "%m/%d %H:%M:%S" "time" 10, diff --git a/extras/HOME/.xmonad/xmobar-bluetooth b/extras/HOME/.xmonad/xmobar-bluetooth index 16a6d70..3d65ee7 100755 --- a/extras/HOME/.xmonad/xmobar-bluetooth +++ b/extras/HOME/.xmonad/xmobar-bluetooth @@ -13,10 +13,10 @@ if [ -d /sys/class/bluetooth ] ; then fi if [ "$key" == "Connected" -a "$value" == "yes" ] ; then - exec echo "<fc=#4287f5></fc> <fc=#a0a0a0><fn=3>$cur</fn></fc> <fc=#404040>│</fc> " + exec echo "<fc=#4287f5></fc> <fc=#a0a0a0><fn=3>$cur</fn></fc> " fi done fi -exec echo "<fc=#404040></fc> <fc=#404040>│</fc> " +exec echo "<fc=#404040></fc> " diff --git a/extras/HOME/.xmonad/xmobar-weather b/extras/HOME/.xmonad/xmobar-weather index 0fee524..7399969 100755 --- a/extras/HOME/.xmonad/xmobar-weather +++ b/extras/HOME/.xmonad/xmobar-weather @@ -100,4 +100,4 @@ if ($is_day) { $conditions = %conditions_night{$sky_conditions}; } -printf("<fc=#a0a0a0><fn=3>$city</fn> <fn=3>$dir</fn> <fn=3>${wind_speed}</fn></fc> $conditions<fn=3> <fc=#a0a0a0>%.0f°F</fc></fn>\n", $temp); +printf("<fc=#a0a0a0><fn=3>$city</fn><fn=3>$dir</fn><fn=3>${wind_speed}</fn></fc> $conditions<fn=3> <fc=#a0a0a0>%.0f°F</fc></fn>\n", $temp); |