mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 22:30:51 +00:00
10 lines
294 B
Bash
Executable File
10 lines
294 B
Bash
Executable File
#!/bin/sh
|
|
sleep 2s
|
|
[ -z $* ] && /home/bruno/Apps/linuxShortcuts/music/csound --analog
|
|
killall OXO.sh >/dev/null
|
|
killall lockOXO.sh >/dev/null
|
|
tomatos=`ps aux | grep tomatoshell | awk '{ print $11 " " $12 " " $13 " " $14 }'`
|
|
for tomato in tomatos; do
|
|
pkill --signal SIGINT -f "$tomato"
|
|
done
|