mostly profanity and fixes
[distro-setup] / prof
1 #!/bin/bash
2
3
4 set -e; . /usr/local/lib/err; set +e
5
6 dossh=true
7 if (( $# >= 1 )); then
8 remote=$1
9 else
10 remote=b8.nz
11 if systemctl --quiet is-active profanity || [[ $HOSTNAME == kd ]]; then
12 dossh=false
13 fi
14 fi
15
16 if $dossh; then
17 # IANK_BASHRC_RUN because if prof-remote dies for some reason, we
18 # I dont want konsole to disappear.
19 export IANK_BASHRC_RUN="prof-remote $remote"
20 konsole --profile profanity
21 else
22 konsole --profile profanity -e screen -RD -S profanity
23 fi