Skip to content

Instantly share code, notes, and snippets.

View ayamir's full-sized avatar
🎯
For Free

ayamir

🎯
For Free
View GitHub Profile
@ayamir
ayamir / switch.sh
Last active February 27, 2025 03:50
Switch kitty, tmux, and neovim theme without any restart operations.
#!/usr/bin/env bash
check_file_exists() {
if [ ! -f "$1" ]; then
exit 1
fi
}
check_macos() {
local os_name=$(uname -s)