mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 03:07:48 +00:00
11 lines
396 B
Bash
Executable File
11 lines
396 B
Bash
Executable File
#!/bin/sh
|
|
sleep 5s
|
|
while [ 1 = 1 ]; do
|
|
current=`kactivities-cli --current-activity | grep "Main"`
|
|
if [[ $current ]]; then
|
|
kactivities-cli --stop-activity `kactivities-cli --list-activities | grep "Main" | cut -d' ' -f2`
|
|
notify-send --icon=`kactivities-cli --list-activities | grep "OXO" | cut -d' ' -f4` -a "OXO Innovation" "Main profile closed"
|
|
fi
|
|
sleep 20s
|
|
done
|