diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-05-07 17:31:42 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-05-07 17:31:42 -0400 |
| commit | 33e329c8cb44679c37054d1823ef487c2569fcdc (patch) | |
| tree | 96e6e12e7ac894ba6af70bd5d0d15510113b3aac /.local/bin/statusbar/torrent | |
| parent | baad9e0136890d8b894b0b0562466c112c5bcc43 (diff) | |
| download | eibhear-33e329c8cb44679c37054d1823ef487c2569fcdc.tar.gz eibhear-33e329c8cb44679c37054d1823ef487c2569fcdc.tar.zst eibhear-33e329c8cb44679c37054d1823ef487c2569fcdc.zip | |
statusbar scripts now open when shift-clicked
weather module "fixed"
other minor statusbar script tweaks
Diffstat (limited to '.local/bin/statusbar/torrent')
| -rwxr-xr-x | .local/bin/statusbar/torrent | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.local/bin/statusbar/torrent b/.local/bin/statusbar/torrent index 5095cd6..99ed5c8 100755 --- a/.local/bin/statusbar/torrent +++ b/.local/bin/statusbar/torrent @@ -10,18 +10,24 @@ transmission-remote -l | grep % | s/.*%.*/M/g" | sort -h | uniq -c | sed " # Now we replace the standin letters with icons. s/A/🛑/g; - s/B/⌛️/g; + s/B/🕰/g; s/L/🔼/g; s/M/🔽/g; s/N/✅/g; s/Z/🌱/g" | awk '{print $2, $1}' | tr '\n' ' ' | sed 's/ $//' case $BLOCK_BUTTON in - 1) $TERMINAL -e tremc ;; - 3) notify-send "Torrent module" "🛑: paused -⏳: idle (seeds needed) + 1) setsid "$TERMINAL" -e tremc & ;; + 2) td-toggle ;; + 3) notify-send "🌱 Torrent module" "\- Left click to open tremc. +- Middle click to toggle transmission. +- Shift click to edit script. +Module shows number of torrents: +🛑: paused +🕰: idle (seeds needed) 🔼: uploading (unfinished) 🔽: downloading ✅: done 🌱: done and seeding" ;; + 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac |
