818b09762e
SOCKTOP_GROUPS splits hosts into ';'-separated groups, each its own tmux window with an optional @layout. The carousel walks group overview -> each pane zoomed -> next group overview. SOCKTOP_HOSTS still works as one group. install.sh --autologin writes a lightdm.conf.d drop-in; uninstall removes it. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
57 lines
1.8 KiB
Bash
Executable File
57 lines
1.8 KiB
Bash
Executable File
#!/bin/sh
|
|
# Remove socktop-swipe. Leaves lisgd, the 'input' group membership and your
|
|
# socktop profiles alone -- those are useful independently and removing them
|
|
# could break other things.
|
|
#
|
|
# ./uninstall.sh remove scripts, config and the X ignore rule
|
|
# ./uninstall.sh --keep-config leave the config file in place
|
|
set -eu
|
|
|
|
PREFIX=${PREFIX:-/usr/local}
|
|
BIN="$PREFIX/bin"
|
|
CONF="$PREFIX/etc/socktop-swipe.env"
|
|
XCONF=/etc/X11/xorg.conf.d/99-ignore-touch-socktop-swipe.conf
|
|
BCONF=/etc/X11/xorg.conf.d/10-no-blanking-socktop-swipe.conf
|
|
LCONF=/etc/lightdm/lightdm.conf.d/50-autologin-socktop-swipe.conf
|
|
|
|
keep_config=no
|
|
[ "${1:-}" = "--keep-config" ] && keep_config=yes
|
|
|
|
# Stop anything running. -x matches the exact process name; -f would also match
|
|
# this script's own command line and kill the shell running it.
|
|
pkill -x lisgd 2>/dev/null || true
|
|
|
|
for f in socktop-rack socktop-swipe socktop-gestures; do
|
|
if [ -e "$BIN/$f" ]; then
|
|
sudo rm -f "$BIN/$f"
|
|
echo "removed $BIN/$f"
|
|
fi
|
|
done
|
|
|
|
if [ "$keep_config" = no ] && [ -e "$CONF" ]; then
|
|
sudo rm -f "$CONF"
|
|
echo "removed $CONF"
|
|
fi
|
|
|
|
if [ -e "$XCONF" ]; then
|
|
sudo rm -f "$XCONF"
|
|
echo "removed $XCONF (touch returns to X after the next X restart)"
|
|
fi
|
|
|
|
if [ -e "$BCONF" ]; then
|
|
sudo rm -f "$BCONF"
|
|
echo "removed $BCONF (screen blanking returns after the next X restart)"
|
|
fi
|
|
|
|
if [ -e "$LCONF" ]; then
|
|
sudo rm -f "$LCONF"
|
|
echo "removed $LCONF (login prompt returns at next boot)"
|
|
fi
|
|
|
|
echo
|
|
echo "Left in place on purpose:"
|
|
echo " * lisgd -- remove with: sudo make -C ~/src/lisgd uninstall"
|
|
echo " * 'input' group -- remove with: sudo gpasswd -d $(id -un) input"
|
|
echo " * i3 autostart -- delete the 'socktop-swipe' block in ~/.config/i3/config"
|
|
echo " * socktop profiles -- ~/.config/socktop/profiles.json"
|