diff options
| -rw-r--r-- | readme.md | 2 | ||||
| -rw-r--r-- | src/Plugins/Monitors/Wireless.hs | 5 | 
2 files changed, 4 insertions, 3 deletions
| @@ -696,7 +696,7 @@ something like:    "wlan0" []` can be used as `%wlan0wi%`  - Args: default monitor arguments  - Variables that can be used with the `-t`/`--template` argument: -            `essid`, `quality`, `qualitybar` +            `essid`, `quality`, `qualitybar`, `qualityvbar`  - Default template: `<essid> <quality>`  - Requires the C library [iwlib] (part of the wireless tools suite)    installed in your system. In addition, to activate this plugin you diff --git a/src/Plugins/Monitors/Wireless.hs b/src/Plugins/Monitors/Wireless.hs index f8192dc..d5342a1 100644 --- a/src/Plugins/Monitors/Wireless.hs +++ b/src/Plugins/Monitors/Wireless.hs @@ -19,7 +19,7 @@ import IWlib  wirelessConfig :: IO MConfig  wirelessConfig = -  mkMConfig "<essid> <quality>" ["essid", "quality", "qualitybar"] +  mkMConfig "<essid> <quality>" ["essid", "quality", "qualitybar", "qualityvbar"]  runWireless :: [String] -> Monitor String  runWireless (iface:_) = do @@ -33,5 +33,6 @@ runWireless (iface:_) = do         then showPercentWithColors (qlty / 100)         else showWithPadding ""    qb <- showPercentBar qlty (qlty / 100) -  parseTemplate [ep, q, qb] +  qvb <- showVerticalBar qlty +  parseTemplate [ep, q, qb, qvb]  runWireless _ = getConfigValue naString | 
