Skip to content

Instantly share code, notes, and snippets.

View skittree's full-sized avatar

Dmitry Pakhomov skittree

View GitHub Profile
@skittree
skittree / gnome-workspace-setup.sh
Last active February 22, 2026 05:14
i3-like GNOME workspace shortcut workflow setup CLI
#!/usr/bin/env bash
install_shortcuts() {
echo "Installing GNOME workspace & shortcut setup..."
for i in {1..9}; do
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-$i "['<Super>$i']"
gsettings set org.gnome.desktop.wm.keybindings move-to-workspace-$i "['<Super><Shift>$i']"
gsettings set org.gnome.shell.keybindings switch-to-application-$i "['<Super><Alt>$i']"
done