Skip to content

Instantly share code, notes, and snippets.

@umkl
umkl / show-hide-macos-desktop-icons.zshrc
Last active April 9, 2024 14:35
easily hide and show desktop icons on macos
alias hide-desktop="defaults write com.apple.finder CreateDesktop false; killall Finder"
alias show-desktop="defaults write com.apple.finder CreateDesktop true; killall Finder"
@umkl
umkl / config.fish
Created January 10, 2025 11:43
My current fish config
# Only execute commands in interactive sessions
if status is-interactive
# Ensure Homebrew is in the PATH for everything installed via Homebrew
if type brew &>/dev/null
set -gx PATH $PATH (brew --prefix)/bin
set -gx PATH $PATH (brew --prefix)/sbin
end
end