-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmasterii
executable file
·92 lines (89 loc) · 2.11 KB
/
masterii
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/dash
HEREDIR="$(dirname "$(readlink -f "$0")")"
testifterminal_func () {
case $(ps -o stat= -p $$) in
*+*)
echo "continue..."
sleep 1
;;
*)
notify-send -t 900 "clean exit" "please run the command in terminal."
exit 0
;;
esac
}
case "$1" in
""|statusboard)
"$HEREDIR"/statusboard/maintoggle
;;
das|dicandsearch)
"$HEREDIR"/taskmenu/dicandsearch
;;
tsm|taskscriptmenu)
"$HEREDIR"/taskmenu/taskscriptmenu
;;
dro|directopen)
"$HEREDIR"/taskmenu/directopen "$2"
;;
mkd|makedirectopen)
"$HEREDIR"/taskmenu/helpers/makedirectopen "$2"
;;
ssm|screenshotmenu)
"$HEREDIR"/taskmenu/screenshotmenu
;;
bao|browseandopen)
"$HEREDIR"/taskmenu/browseandopen "$2"
;;
bnc|batnoticontrol)
"$HEREDIR"/others/battnoticontrol "$2"
;;
adc|audiocontrol)
"$HEREDIR"/others/audiocontrol "$2"
;;
scc|screencontrol)
"$HEREDIR"/others/screencontrol "$2"
;;
css|clipboardss)
"$HEREDIR"/taskmenu/screenshots/clipboard-ss-Selected-Rectangle
;;
sss|swappyss)
"$HEREDIR"/taskmenu/screenshots/swappy-ss-Selected-Rectangle
;;
sav|selectandview)
"$HEREDIR"/selectedview/selectandview
;;
pass|password)
"$HEREDIR"/taskmenu/taskscripts/Passwords
;;
kill)
"$HEREDIR"/others/kill "$2"
;;
mur|mshaur)
"$HEREDIR"/others/mur "$2" "$3"
;;
wifi|mshwifi)
"$HEREDIR"/others/wificontrol
;;
ecf|ecpfs)
"$HEREDIR"/others/ecpfs "$2" "$3"
;;
nsc|newscript)
"$HEREDIR"/others/newscript "$2" "$3"
;;
ext|extmonitor)
"$HEREDIR"/others/extmonitor
;;
ytd|ytdl)
"$HEREDIR"/others/fzytdl "$2"
;;
h|help)
testifterminal_func
cat "$HEREDIR"/iimanual
exit 0
;;
*)
testifterminal_func
cat "$HEREDIR"/iimanual
exit 0
;;
esac