mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-08-26 19:34:12 +02:00
13 lines
286 B
Bash
13 lines
286 B
Bash
#!/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
|