~kris/dots

srice

ref: 9f828eb14bdd54d2c4fd8a3b2c90253021df3152 srice/.local/bin/statusbar/sb-torrent -rwxr-xr-x 431 bytes
9f828eb1 — Kris Yotam mksh: backslash-escape commands in history hook to bypass module aliases (wc=tokei, tr=transmission-remote, cat=bat) 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# Torrent status module using rtorrent
# Shows rtorrent status if running

case $BLOCK_BUTTON in
	1) setsid -f "$TERMINAL" -e rtorrent ;;
	3) notify-send "󰦗 Torrent module" "\- Left click to open rtorrent.
- Shows 󰦗 if rtorrent is running.
- Shift+click to edit script." ;;
	6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac

# Check if rtorrent is running
if pidof rtorrent >/dev/null 2>&1; then
	echo "󰦗"
fi