diff options
Diffstat (limited to 'xmobarrc')
-rw-r--r-- | xmobarrc/bot.hs | 65 | ||||
-rw-r--r-- | xmobarrc/top.hs | 41 |
2 files changed, 0 insertions, 106 deletions
diff --git a/xmobarrc/bot.hs b/xmobarrc/bot.hs deleted file mode 100644 index 1235545..0000000 --- a/xmobarrc/bot.hs +++ /dev/null @@ -1,65 +0,0 @@ -Config { font = "xft:tewi:style=Regular:pixelsize=11,Biwidth:pixelsize=12" - , additionalFonts = [ "xft:Siji:style=Regular" - , "xft:tewi:style=Bold:pixelsize=11" - ] - , bgColor = "#0b0806" - , fgColor = "#a19782" - , alpha = 255 - , position = Static { xpos = 12 - , ypos = 864 - , width = 1576 - , height = 24 - } - , textOffset = 15 - , textOffsets = [ 15, 15 ] - , iconOffset = -1 - , lowerOnStart = True - , hideOnStart = False - , allDesktops = True - , overrideRedirect = False - , pickBroadest = False - , persistent = False - , border = FullBM 0 - , borderColor = "#2f2b2a" - , borderWidth = 1 - , iconRoot = "." - , commands = [ Run StdinReader - , Run Battery [ "-t", "<fn=1><acstatus></fn> <left>%" - , "--" - , "-i", "\57914" - , "-O", "\57913" - , "-o", "\57911" - ] 10 - , Run Wireless "wlp3s0" [ "-t", "<fn=1>\57775</fn> <essid> @ <quality>%" ] 10 - , Run DynNetwork [ "-t", "<fn=1>\57660</fn> <rx> / <fn=1>\57659</fn> <tx> kbps" ] 10 - , Run Kbd [ ("us", "English") - , ("ru", "Русский") - ] - , Run Com "/home/free/.xmonad/scripts/xmobar/fcitx.sh" [] "fcitx" 3 - , Run Locks - , Run MPD [ "-t", "<fn=1><statei></fn> <artist> - <title>" - , "--" - , "-P", "\57498" - , "-Z", "\57499" - , "-S", "\57497" - ] 10 - , Run Volume "default" "Master" [ "-t", "<fn=1><status></fn> <volume>%" - , "--" - , "--on" , "\57427" - , "--off" , "\57426" - , "--onc" , "#a19782" - , "--offc" , "#a19782" - ] 10 - ] - , sepChar = "%" - , alignSep = "}{" - , template = " \ - \%battery% %wlp3s0wi% %dynnetwork% %StdinReader%\ - \}\ - \%kbd% / %fcitx%\ - \{\ - \%mpd% %default:Master%\ - \ " - } - --- vim:filetype=haskell diff --git a/xmobarrc/top.hs b/xmobarrc/top.hs deleted file mode 100644 index 1cdab9c..0000000 --- a/xmobarrc/top.hs +++ /dev/null @@ -1,41 +0,0 @@ -Config { font = "xft:tewi:style=Regular:pixelsize=11,Biwidth:pixelsize=12" - , additionalFonts = [ "xft:Siji:style=Regular" - , "xft:tewi:style=Bold:pixelsize=11" - ] - , bgColor = "#0b0806" - , fgColor = "#a19782" - , alpha = 255 - , position = Static { xpos = 12 - , ypos = 12 - , width = 1576 - , height = 24 - } - , textOffset = 15 - , textOffsets = [ 15, 15 ] - , iconOffset = -1 - , lowerOnStart = True - , hideOnStart = False - , allDesktops = True - , overrideRedirect = False - , pickBroadest = False - , persistent = False - , border = FullBM 0 - , borderColor = "#2f2b2a" - , borderWidth = 1 - , iconRoot = "." - , commands = [ Run StdinReader - , Run Date "<fn=1>\57893</fn> %d.%m.%y / %A / %H:%M" "date" 10 - , Run Weather "UUWW" [ "-t", "<fn=1>\57550</fn> <tempC>°C / <rh>% / <pressure> Pa" ] 10000 - ] - , sepChar = "%" - , alignSep = "}{" - , template = " \ - \%StdinReader%\ - \}\ - \\ - \{\ - \%UUWW% %date%\ - \ " - } - --- vim: filetype=haskell |