diff options
author | ensa <psii@riseup.net> | 2020-05-30 02:01:43 -0700 |
---|---|---|
committer | ensa <psii@riseup.net> | 2020-05-30 02:27:02 -0700 |
commit | 310c76b161e680a698995d61b2a741a05b384fbe (patch) | |
tree | 39338035a918c2466d27f8041d3f6416830e84e1 /config/aliasrc | |
parent | 7c28231047f1b9c07ce6b85366afe1dce821cc7a (diff) | |
download | cfg-310c76b161e680a698995d61b2a741a05b384fbe.tar.gz |
new functionality, themes, man page
bin/ bar.sh: pipes spoon into dzen2 lh: added gemini/gopher handling with bombadillo shortened (no loss of functionality) opener: shortened (no loss of functionality) config/ X11/xprofile: added bar.sh aliasrc: just read it color/colors.sh: color environment variables, like wal's cwmrc: font specified as otb swapped oxbar with bar.sh ksh/ completions.ksh: added completions for shortcut functions diraliases: redone with self-references, more complete functions/ pcl: copies password for $1 to selection uses clip if two arguments pct: copies totp for $1 to selection uses clip if two arguments pkg_complete: uses cache diralias kshrc: added functions command fixed ensuring existence of HISTFILE's dir nvim/init.vim: deleted, no longer used vis/ themes/causalagency.lua: good colorscheme for vis themes/fake256.lua: scrapped visrc.lua: removed change-256color disable added cul nu ai youtube-dl/ config, config-music: fixed output dir zathura/zathurarc: specified cozette otb data/ applications/text.desktop now uses xterm and vis man/man7/user-hier.7 based off hier(7), describes structure of .. home directory
Diffstat (limited to 'config/aliasrc')
-rw-r--r-- | config/aliasrc | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/config/aliasrc b/config/aliasrc new file mode 100644 index 0000000..88d0ba7 --- /dev/null +++ b/config/aliasrc @@ -0,0 +1,47 @@ +#!/bin/sh +# a file containing POSIX shell-compliant aliases so aliases can be consistent between shells. +alias \ + l="/bin/ls"\ + ls="exa -Fb"\ + ll='exa -Fbl'\ + lg='exa -Fbl --git'\ + la='exa -Fba'\ + lynx='lynx -cookies-'\ + df='df -h'\ + du='du -h'\ + gs='git status --short --branch || ls'\ + gsh='git show'\ + gd='git diff'\ + gl='git log --graph --pretty=log'\ + gco='git checkout'\ + gb='git branch'\ + gm='git merge'\ + gst='git stash'\ + ga='git add'\ + gmv='git mv'\ + grm='git rm'\ + gc='git commit'\ + gca='gc --amend'\ + gt='git tag'\ + gp='git push'\ + gu='git pull'\ + gf='git fetch'\ + gr='git rebase'\ + gra='gr --abort'\ + grc='gr --continue'\ + grs='gr --skip'\ + cp='cp -v' \ + mv='mv -v'\ + sl='streamlink -p mpv'\ + pa='doas pkg_add -D snap'\ + pd='doas pkg_delete'\ + pi='pkg_info -D snap'\ + pl='pkglocate'\ + f="\$FILE"\ + e="\$EDITOR"\ + v="\$EDITOR"\ + yt='youtube-dl'\ + ya="youtube-dl --config-location \$XDG_CONFIG_HOME/youtube-dl/config-music" \ + unwww='bombadillo'\ + masto="tootstream -c $XDG_CONFIG_HOME/tootstream/tootstream.conf"\ + logout='clear&&exit' |