diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2020-10-25 18:04:04 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2020-10-25 18:04:04 +0300 |
commit | 49889fc2619e28e0f1e7501551d80e3d6619e30a (patch) | |
tree | 75e7700b223a1d54d980f63a3527de411736f56c /dotfiles/.local/bin/toggletorrent | |
parent | 00057555445c6ecbce7c415064c6263c98f8e0fd (diff) | |
download | swayrice-49889fc2619e28e0f1e7501551d80e3d6619e30a.tar.gz swayrice-49889fc2619e28e0f1e7501551d80e3d6619e30a.zip |
Transmission daemon management
* Waybar module to display whether transmission-daemon is running
* Sway shortcuts for transmission-daemon and its gtk front-end
Diffstat (limited to 'dotfiles/.local/bin/toggletorrent')
-rwxr-xr-x | dotfiles/.local/bin/toggletorrent | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/toggletorrent b/dotfiles/.local/bin/toggletorrent new file mode 100755 index 0000000..4c67cc5 --- /dev/null +++ b/dotfiles/.local/bin/toggletorrent @@ -0,0 +1,18 @@ +#!/bin/sh + +if ! [ -f "$HOME/.cache/transdaemonpid" ] ; then + transmission-daemon + TRANSPID=$! + TRANSEXIT=$? + if [ $TRANSEXIT -eq 0 ]; then + pkill -RTMIN+10 waybar + echo "$TRANSPID" > ~/.cache/transdaemonpid + exit + fi + notify-send " Torrent server" "Error while trying to start Transmission daemon" + exit 1 +fi + +pkill -f "transmission-daemon" +rm ~/.cache/transdaemonpid +pkill -RTMIN+10 waybar |