-
Notifications
You must be signed in to change notification settings - Fork 0
/
stop-power
executable file
·59 lines (51 loc) · 1.06 KB
/
stop-power
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
chromiumStatus='false'
firefoxStatus='false'
torrentManagerStatus='false'
echo ${1^}
# Set vars
case ${1^} in #ensure first letter is uppercase
"SchoolStrict" )
chromiumStatus='true'
firefoxStatus='false'
torrentManagerStatus='false'
;;
"SchoolLazy" )
chromiumStatus='true'
firefoxStatus='true'
torrentManagerStatus='false'
;;
"HomeStrict")
chromiumStatus='false'
firefoxStatus='true'
torrentManagerStatus='true'
;;
"HomeLazy" )
chromiumStatus='true'
firefoxStatus='true'
torrentManagerStatus='true'
;;
"Off" )
chromiumStatus='false'
firefoxStatus='false'
torrentManagerStatus='false'
;;
esac
chromename='/usr/lib/chromium/*'
firefoxname='/usr/lib/firefox-esr/*'
torrentManagerName='qbittorrent'
if $chromiumStatus; then
pkill -f "$chromename" --signal CONT
else
pkill -f "$chromename" --signal STOP
fi
if $firefoxStatus; then
pkill -f "$firefoxname" --signal CONT
else
pkill -f "$firefoxname" --signal STOP
fi
if $torrentManagerStatus; then
pkill -f "$torrentManagerName" --signal CONT
else
pkill -f "$torrentManagerName" --signal STOP
fi