diff options
author | ryo <ryo@nopwd.lol> | 2024-10-31 17:08:48 +0000 |
---|---|---|
committer | ryo <ryo@nopwd.lol> | 2024-10-31 17:08:48 +0000 |
commit | 709542f2011784e2da48405a0972ee46705033b8 (patch) | |
tree | 43d9a54e8055b4d91d1f659b757d33a2cb1d060c /config/shell/alias | |
parent | cc6d6fcfc6e8403e87dae9f092e61f0edf8e3cc6 (diff) |
Fixed: major bugs and bad file names
Diffstat (limited to 'config/shell/alias')
-rw-r--r-- | config/shell/alias | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/config/shell/alias b/config/shell/alias deleted file mode 100644 index 0b6287a..0000000 --- a/config/shell/alias +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env zsh - -# Ryo aliases -# https://ryo.nopwd.lol -# -# fork of Luke's config -# https://github.com/lukesmithxyz/voidrice - -# only if variables exists -[ -f "$XINITRC" ] && alias startx="startx $XINITRC" -[ -f "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC" - -# be careful -alias \ - cp="cp -i" \ - mv="mv -i" \ - rm="rm -I" \ - bc="bc -ql" \ - d='doas' - -# colorize commands when possible. -alias \ - ls="ls -hN --color=auto --group-directories-first" \ - grep="grep --color=auto" \ - diff="diff --color=auto" \ - ccat="highlight --out-format=ansi" \ - ip="ip -color=auto" - -# Arch pacman -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" \ - 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' \ - ffmpeg="ffmpeg -hide_banner" - |