This commit is contained in:
fanyx 2021-05-26 14:33:06 +02:00
commit ee6fc730bc
2 changed files with 32 additions and 0 deletions

24
.void.bash_aliases Normal file
View File

@ -0,0 +1,24 @@
#!/bin/bash
# import general use aliases
[[ -r ~/.alias ]] && . ~/.alias
# xbps-install
alias xin="doas xbps-install -S"
alias xup="doas xbps-install -Su"
# xbps-query
alias xq="xbps-query"
alias xs="xq -Rs"
alias xqs="xq -S"
alias xqm="xq -m"
alias xql="xq -l"
alias xqq="xql | grep ${1}"
# xbps-remove
alias xr="doas xbps-remove -R"
alias xcln="xr -o"
# config edits
alias cb="vim $HOME/.config/bspwm/bspwmrc"
alias csx="vim $HOME/.config/sxhkd/sxhkdrc"

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# dotfiles
Contains .dotfiles for my debian and void distros.
Clone and `ln -s` the applicable files to the distro agnotic filenames. e.g.:
`ln -s .void.bashrc .bashrc`
I will add an install script at a later date.