gnome-shell-extension-pop-s.../pop-shell.install
2020-10-14 18:47:52 +02:00

46 lines
1.5 KiB
Plaintext
Executable File

post_install() {
echo "POP-shell configuration"
cd $(mktemp -d)
touch .confirm_shortcut_change
/usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/configure.sh
}
post_upgrade() {
post_install
}
post_remove() {
KEYS_GNOME_WM=/org/gnome/desktop/wm/keybindings
KEYS_GNOME_SHELL=/org/gnome/shell/keybindings
KEYS_MUTTER=/org/gnome/mutter/keybindings
KEYS_MEDIA=/org/gnome/settings-daemon/plugins/media-keys
left="h"
down="j"
up="k"
right="l"
dconf reset ${KEYS_GNOME_WM}/minimize
dconf reset ${KEYS_GNOME_SHELL}/open-application-menu
dconf reset ${KEYS_GNOME_SHELL}/toggle-message-tray
dconf reset ${KEYS_GNOME_WM}/switch-to-workspace-left
dconf reset ${KEYS_GNOME_WM}/switch-to-workspace-right
dconf reset ${KEYS_GNOME_WM}/move-to-monitor-up
dconf reset ${KEYS_GNOME_WM}/move-to-monitor-down
dconf reset ${KEYS_GNOME_WM}/move-to-monitor-left
dconf reset ${KEYS_GNOME_WM}/move-to-monitor-right
dconf reset ${KEYS_GNOME_WM}/move-to-workspace-up
dconf reset ${KEYS_GNOME_WM}/move-to-workspace-down
dconf reset ${KEYS_GNOME_WM}/move-to-workspace-left
dconf reset ${KEYS_GNOME_WM}/move-to-workspace-right
dconf reset ${KEYS_MUTTER}/toggle-tiled-left
dconf reset ${KEYS_MUTTER}/toggle-tiled-right
dconf reset ${KEYS_GNOME_WM}/toggle-maximized
dconf reset ${KEYS_MEDIA}/screensaver
dconf reset ${KEYS_MEDIA}/home
dconf reset ${KEYS_MEDIA}/email
dconf reset ${KEYS_MEDIA}/www
dconf reset ${KEYS_MEDIA}/rotate-video-lock-static
dconf reset ${KEYS_GNOME_WM}/close
}