This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Path to the Plymouth theme configuration file | |
| PLYMOUTH_CONFIG="/usr/share/plymouth/themes/pop-basic/pop-basic.plymouth" | |
| # Function to ask yes/no questions | |
| ask_yes_no() { | |
| while true; do | |
| read -p "$1 (y/n): " yn | |
| case $yn in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Turn off gnome sidebar dock on hover | |
| gsettings set org.gnome.shell.extensions.dash-to-dock autohide false | |
| gsettings set org.gnome.shell.extensions.dash-to-dock dock-fixed false | |
| gsettings set org.gnome.shell.extensions.dash-to-dock intellihide false | |
| // turn off the gnome animations | |
| gsettings set org.gnome.desktop.interface enable-animations false | |
| Long story short, you can disable animations with these two commands: | |
| gsettings set org.gnome.settings-daemon.plugins.remote-display active false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /snap/bin/nvim | |
| grep "Icon=" /var/lib/snapd/desktop/applications/nvim_nvim.desktop | |
| [Desktop Entry] | |
| Name=Neovim (KITTY) | |
| Exec=kitty sh -c "/snap/bin/nvim %F" | |
| Terminal=false | |
| Type=Application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Name=kitty | |
| GenericName=Terminal emulator | |
| Comment=Fast, feature-rich, GPU based terminal | |
| TryExec=kitty | |
| Exec=kitty | |
| Icon=kitty | |
| Categories=System;TerminalEmulator; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ============================================= | |
| QMK Firmware Setup Guide for Linux (Pop!_OS/Ubuntu) | |
| ============================================= | |
| 1. Install Dependencies & QMK CLI | |
| --------------------------------- | |
| sudo apt update && sudo apt upgrade -y | |
| sudo apt install git python3-pip gcc avr-libc avrdude dfu-programmer dfu-util | |
| python3 -m pip install --user qmk | |
| echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt install -y git python3-pip | |
| python3 -m pip install --user qmk | |
| qmk setup | |
| qmk compile -kb <keyboard> -km default | |
| qmk compile -kb clueboard/66/rev3 -km default | |
| 1. Fix Missing Udev Rules |