2024-04-26 17:41:20 +00:00
|
|
|
alias update="apt update && apt upgrade -y"
|
|
|
|
alias tidal="/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=com.mastermindzh.tidal-hifi com.mastermindzh.tidal-hifi &"
|
2024-07-04 14:56:11 +00:00
|
|
|
alias devsesh="$HOME/scripts/tmux-dev-session.sh"
|
2024-10-16 10:24:58 +00:00
|
|
|
alias slides="nohup ${HOME}/.config/hypr/bg-scripts/hyprland-slideshow.sh"
|
2024-10-13 14:55:11 +00:00
|
|
|
alias ls="ls --color=auto"
|
2024-06-19 21:53:52 +00:00
|
|
|
|
2024-10-14 19:40:08 +00:00
|
|
|
alias fzf='fzf --preview='\''
|
|
|
|
if file --mime-type {} | grep -qF '\''image/'\''; then
|
|
|
|
kitty icat --clear --transfer-mode=memory --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@0x0 {}
|
|
|
|
else
|
|
|
|
batcat --color=always {}
|
|
|
|
fi
|
|
|
|
'\'''
|
|
|
|
|
|
|
|
|
2024-06-19 21:53:52 +00:00
|
|
|
export SUDO_EDITOR="nvim"
|
2024-04-26 17:41:20 +00:00
|
|
|
|
|
|
|
##suffix aliases
|
|
|
|
#text formats
|
|
|
|
alias -s txt=nvim
|
|
|
|
alias -s md=nvim
|
|
|
|
|
|
|
|
#code
|
|
|
|
alias -s py=nvim
|
|
|
|
alias -s js=nvim
|
|
|
|
alias -s mjs=nvim
|
|
|
|
alias -s html=nvim
|
|
|
|
alias -s css=nvim
|
|
|
|
|
|
|
|
#data
|
|
|
|
alias -s json=nvim
|
|
|
|
alias -s csv=nvim
|