summaryrefslogtreecommitdiffhomepage
path: root/src/lib/Bottom.hs
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-08-13 17:15:15 +0100
committerjao <jao@gnu.org>2022-08-13 17:15:15 +0100
commitf62d3d8c2bc488f26fa21a3f824879d614570aec (patch)
treec28fedc2bea27e7cc85df7d0e0b2fc9ee5bc1de9 /src/lib/Bottom.hs
parentc94a9349d25394726456efc8b1dbcca8385b1b77 (diff)
downloadxmobar-config-f62d3d8c2bc488f26fa21a3f824879d614570aec.tar.gz
xmobar-config-f62d3d8c2bc488f26fa21a3f824879d614570aec.tar.bz2
lib: clean ups
Diffstat (limited to 'src/lib/Bottom.hs')
-rw-r--r--src/lib/Bottom.hs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/Bottom.hs b/src/lib/Bottom.hs
deleted file mode 100644
index 5b2b6c9..0000000
--- a/src/lib/Bottom.hs
+++ /dev/null
@@ -1,35 +0,0 @@
-module Bottom (config) where
-
-import Xmobar
-import Config
-import Monitors
-
--- ⏱
-config cs tpl p = (baseConfig p) {
- position = BottomSize C 100 defaultHeight
- , textOffset = defaultHeight - 6
- , textOffsets = [defaultHeight - 6, defaultHeight - 6,
- defaultHeight - 4, defaultHeight - 8,
- defaultHeight - 7]
- , border = TopB
- , template = "|tray| \
- \<action=`toggle-app.sh nm-applet`>|proton0||wlp1s0wi|</action> \
- \ |dynnetwork| \
- \ <action=`toggle-app.sh pasystray`>|default:Master|\
- \ |default:Capture|</action> <fn=2>🎵</fn>"
- ++ tpl
- ++ " {} |mail| |EGPH| \
- \ <fn=2>🗓 </fn>|uptime| <fn=2>🕓 </fn>|datetime| |laTime| "
- , commands = [ Run (uptime p)
- , Run (wireless p "wlp1s0")
- , Run (dynNetwork p)
- , Run proton0
- , Run (weather "EGPH" p) -- LEGE, LEBL, KCV0
- , Run trayPadding
- , Run (mail p)
- , Run (masterVol p)
- , Run captureVol
- , Run laTime
- , Run localTime
- ] ++ cs
-}