#!/bin/sh

# Torrent status module with 󰦗 icon (f0997)

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." ;;
	6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac

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