mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
8 lines
151 B
Bash
Executable File
8 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
if [ -f $(pgrep transmission) ];
|
|
then
|
|
urxvt -e transmission-remote-cli
|
|
else
|
|
transmission-daemon && urxvt -e transmission-remote-cli
|
|
fi
|