cleanup post install script

This commit is contained in:
vincent 2020-10-21 18:27:22 +02:00
parent 07f6f7d267
commit 83cf9e6a9c

View File

@ -1,8 +1,9 @@
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
echo "to configure POP-shell keybinding on user session"
echo "launch Script: /usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/configure.sh"
}
post_upgrade() {
@ -11,36 +12,6 @@ post_upgrade() {
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
echo "to complete uninstalation reset keybinding in parameter pannel"
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
}