summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/xmonad/xmobarrc11
-rwxr-xr-x.local/bin/scripts/transadd4
2 files changed, 2 insertions, 13 deletions
diff --git a/.config/xmonad/xmobarrc b/.config/xmonad/xmobarrc
index 8ff0542..b33fc46 100644
--- a/.config/xmonad/xmobarrc
+++ b/.config/xmonad/xmobarrc
@@ -45,8 +45,6 @@ Config {
, Run Com "volume" ["Volume: <fc=#02d310>%s</fc>"] "" 5
- , Run Alsa "default" "Master" []
-
-- network activity monitor (dynamic interface resolution)
, Run DynNetwork [ "--template" , "<fc=#02d310><dev></fc>"
, "--Low" , "1000" -- units: B/s
@@ -56,15 +54,6 @@ Config {
, "--high" , "red"
] 10
- -- cpu activity monitor
- , Run MultiCpu [ "--template" , "Cpu: <total0>%|<total1>%"
- , "--Low" , "50" -- units: %
- , "--High" , "85" -- units: %
- , "--low" , "#02d310" -- red
- , "--normal" , "#ed8b02" -- orange
- , "--high" , "#ed2902" -- green
- ] 10
-
-- battery monitor
, Run Battery [ "--template" , "Battery: <acstatus>"
, "--Low" , "10" -- units: %
diff --git a/.local/bin/scripts/transadd b/.local/bin/scripts/transadd
index d6de4f5..9ec01a9 100755
--- a/.local/bin/scripts/transadd
+++ b/.local/bin/scripts/transadd
@@ -10,8 +10,8 @@ directories="/var/lib/transmission-daemon/downloads/Movies
/var/lib/transmission-daemon/downloads/Series
/var/lib/transmission-daemon/downloads"
-host=$(pass transmission/rpi-host)
-creds=$(pass transmission/rpi-creds)
+host=$(pass Services/transmission/rpi-host)
+creds=$(pass Services/transmission/rpi-creds)
dest=$(printf "$directories" | dmenu -p "Choose destination" -i -l 5)
transmission-remote $host -n $creds -a "$@" -w "$dest" && notify-send "Torrent added"