Skip to content

Instantly share code, notes, and snippets.

View larouxn's full-sized avatar

Nicholas La Roux larouxn

View GitHub Profile
@larouxn
larouxn / dnf_check_for_test_updates.sh
Created June 20, 2025 10:31
Check dnf for testing updates
sudo dnf update --enablerepo=updates-testing
@larouxn
larouxn / atokatadzuke.sh
Last active May 31, 2025 02:40
🔥 atokatadzuke ✨
# https://jisho.org/word/%E5%BE%8C%E7%89%87%E4%BB%98%E3%81%91
remall() { git branch | grep -v "main" | xargs git branch -D; }
alias atokatadzuke='git checkout main; remall; clear'
# GNOME 47
gsettings set org.gnome.desktop.interface font-name 'Cantarell 11'
gsettings set org.gnome.desktop.interface monospace-font-name 'Source Code Pro 10'
# GNOME 48
gsettings set org.gnome.desktop.interface font-name 'Adwaita Sans 11'
gsettings set org.gnome.desktop.interface monospace-font-name 'Adwaita Mono 11'
git -c sequence.editor=true rebase --autosquash -i main
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ANSIBlackColor</key>
<data>
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECow
LjAyMDQzMzY4ODU0IDAuMDE2MjMyMjQwOTUgMC4wMTYzMzcwNDA4MQAQAoAC0hAREhNa
JGNsYXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFy
@larouxn
larouxn / rebasecity.sh
Last active July 19, 2023 23:11
🚢 rebasecity branch_name 🚀
rebasecity() { git fetch origin main && git checkout "$@" && git rebase origin/main && git push origin --force-with-lease "$@"; }
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt autoclean