summaryrefslogtreecommitdiffhomepage
path: root/src/Single.hs
blob: 44dd6f743c5929ca9b8608d703c24f3deeb84c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import Xmobar
import Config
import Monitors

topProcL p = TopProc (p <~> args) 15
  where template = "<both1>  <both2>  <both3>  <both4> "
                 ++ "·  <mboth1>  <mboth2>  <mboth3>  <mboth4>"
        args = ["-t", template, "-w", "12", "-L" , "10", "-H", "80"]

diskIOS p = DiskIO [("/", "<read> <write>")] (diskArgs p) 10

cpuFreq' p = CpuFreq (p <~> args) 50
  where args = ["-t" , "<avg>" , "-L", "1", "-H", "2", "-d", "2"]

memory' = Memory args 20
  where template = "<used> <available>"
        args = ["-t", template , "-p", "2", "-d", "1", "--", "--scale", "1024"]

master on off p = Volume "default" "Master" (args ++ ("--":ext)) 10
  where args = ["-t", "<status> <volume>"]
        ext = ["-C", pForeground p, "-c", "sienna4", "-O", on, "-o", off]

config p = (baseConfig p) {
  position = TopSize C 100 (defaultHeight - 2)
  , textOffset = offset
  , textOffsets = [offset - 1, offset - 1, offset + 2 , offset, offset + 1]
  , bgColor = if pIsLight p then "gray94" else "black"
  , alpha = 255
  , border = FullB
  , commands = [ Run (topProcL p)
               , Run (load p)
               , Run (iconBatt p)
               , Run (cpuBars p)
               , Run memory'
               , Run (diskU p)
               , Run (diskIOS p)
               , Run (kbd p)
               , Run (coreTemp p)
               , Run (wireless p "wlp164s0")
               , Run (dynNetwork p)
               , Run (vpnMark "wg-mullvad")
               , Run tun0
               , Run (master (dimi "\xf025") (dimi "\xf131") p)
               , Run captureVol
               , Run laTime
               , Run localTime
               , Run (cpuFreq' p)
               , Run (weather' wt "EGPH" p)
               ] ++ extraCmds
  , template = trayT
             ++ " |batt0| "
             ++ "<action=`toggle-app.sh nm-applet`>"
             ++ "  |wg-mullvad||tun0||wlp164s0wi|"
             ++ "</action>"
             ++ " |dynnetwork| "
             ++ "<action=`toggle-app.sh pasystray`>"
             ++ "  |default:Master| " ++ dimi "\xf130" ++ " |default:Capture|"
             ++ "</action>"
             ++ "    |EGPH| "
             ++ eLog p
             ++ " {} "
             ++ "|kbd|"
             ++ " |multicpu|"
             ++ "  |cpufreq|"
             ++ " |multicoretemp|"
             ++ "  |top|   "
             ++ dimi "\xf080" ++ " |memory|  "
             ++ dimi "\xf0a0" ++ "|diskio| |disku| "
             ++ "  |datetime| "
             ++ " |laTime| "
  } where dimi = fc "grey50" . fn 7
          offset = defaultHeight - 8
          wt = "<skyConditionS> <tempC>°  <windKmh>" ++ fn 5 "🌫" ++ " <weather>"
          isXmonad = pWm p == Just "xmonad"
          trayT = if isXmonad then "|tray|" else ""
          eLog p = if isXmonad then "|XMonadLog|" else fc (pHigh p) "|elog|"
          extraCmds = if isXmonad
                      then [ Run (NamedXPropertyLog "_XMONAD_TRAYPAD" "tray")
                           , Run XMonadLog]
                      else [Run (NamedXPropertyLog "_EMACS_LOG" "elog")]

main :: IO ()
main = palette >>= configFromArgs . config >>= xmobar