Skip to content

Instantly share code, notes, and snippets.

@lesha198a
Last active July 24, 2023 22:51
Show Gist options
  • Save lesha198a/68141a3de51f9d9facd7fc91f4606b5f to your computer and use it in GitHub Desktop.
Save lesha198a/68141a3de51f9d9facd7fc91f4606b5f to your computer and use it in GitHub Desktop.
Modifies Alt-Tab keybindings for window-switching, installs feature-rich Nemo as default file manager, and guides dual-boot setup with Windows. Issues, suggestions and contributions welcomed!
#alt tab fix
gsettings set org.gnome.desktop.wm.keybindings switch-applications "[]"
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "[]"
gsettings set org.gnome.desktop.wm.keybindings switch-windows "['<Alt>Tab', '<Super>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-windows-backward "['<Alt><Shift>Tab', '<Super><Shift>Tab']"
#install nemo
sudo apt-get install nemo nemo-fileroller
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
#add Windows to boot
sudo nano /boot/efi/loader/loader.conf
#add these lines:
timeout 10
entries 1
#save file & exit
sudo apt install os-prober
sudo os-prober
#look for disk on which Windows located (e.g. /dev/sda1 )
sudo mount /dev/sda1 /mnt
sudo cp -ax /mnt/EFI/Microsoft /boot/efi/EFI
@lesha198a
Copy link
Author

Tested on Pop OS 22.04

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