Skip to content

Instantly share code, notes, and snippets.

@Vaisakhkm2625
Created January 22, 2023 10:13
Show Gist options
  • Save Vaisakhkm2625/a83ae04de5720ee7700c3b37af4a65af to your computer and use it in GitHub Desktop.
Save Vaisakhkm2625/a83ae04de5720ee7700c3b37af4a65af to your computer and use it in GitHub Desktop.
Alacritty decoratoin issue in gnome
https://github.com/alacritty/alacritty/issues/1096
```
env WINIT_UNIX_BACKEND=x11 alacritty
```
@Vaisakhkm2625
Copy link
Author

another gnome trick (gnome 40+)

run

for i in {1..9}; do 
  gsettings set "org.gnome.shell.keybindings" "switch-to-application-${i}" "[]"
  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}']"
done

to have switch to workspace with Super+number

src:

https://unix.stackexchange.com/questions/677878/supernumber-key-combos-remapping-in-gnome-40-switch-workspaces-instead-of-laun

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment