diff options
| author | ryo <ryo@nopwd.lol> | 2025-03-02 14:18:20 +0000 | 
|---|---|---|
| committer | ryo <ryo@nopwd.lol> | 2025-03-02 14:18:20 +0000 | 
| commit | 9b8855688aff1ee354fbaa7430f03209692ee0d0 (patch) | |
| tree | 4047a154499e5e65622623dcd140b41476bac6a6 /config/shell/aliases | |
| parent | e602a23c7ecdc315da15dd6331e96bba50b9bf39 (diff) | |
setup.sh: read package names from a file
shell: clean up in aliases to keep it simple
tmux: added two shortcuts
Diffstat (limited to 'config/shell/aliases')
| -rw-r--r-- | config/shell/aliases | 18 | 
1 files changed, 2 insertions, 16 deletions
diff --git a/config/shell/aliases b/config/shell/aliases index cdbedac..4cc32a3 100644 --- a/config/shell/aliases +++ b/config/shell/aliases @@ -25,33 +25,19 @@ alias \  	ccat="highlight --out-format=ansi" \  	ip="ip -color=auto" -# Arch pacman +# Arch specific  alias \ -	p="pacman" \  	pacins='doas pacman -S' \  	pacinf='pacman -Si' \  	pacsch='pacman -Ss' -# Void xbps -alias \ -	xi="doas xbps-install" \ -	xr="sudo xbps-remove -R" \ -	xq="xbps-query" -  alias \ -	ll='ls -lh' \ -	g="git" \ -	i='nsxiv' \  	v="$EDITOR" \ -	re='source $ZDOTDIR/.zshrc' \ -	a='mpv --no-video' \ -	mkd="mkdir -pv" \ +	ll='ls -lh' \  	hmpv='mpv --really-quiet' \  	hcurl='curl -L -O' \  	hgit='git clone --depth=1 --no-tags --single-branch' \ -	hfont='fc-list | grep -i' \ -	hfind='find . -name' \  	xclip='xclip -selection clipboard -r' \  	idate='TZ=Iran date' \  	hxkb='setxkbmap -option caps:swapescape -layout us,ir -option grp:shifts_toggle' \  |