mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
13 lines
286 B
Bash
Executable File
13 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Kill running instance
|
|
killall onboard &
|
|
|
|
# rmeove lines from autostart
|
|
sed -i '/onboard/d' /home/tooloop/.config/openbox/autostart
|
|
sed -i '/Keyboard/d' /home/tooloop/.config/openbox/autostart
|
|
sed -i '/keyboard/d' /home/tooloop/.config/openbox/autostart
|
|
|
|
exit 0
|