1
0
Fork 0

Compare commits

..

21 Commits

Author SHA1 Message Date
urosm 71f3ed8947 add README 2023-08-22 20:18:39 +02:00
urosm a2871abff3 add `pandoc` data 2023-08-22 20:18:39 +02:00
urosm d453810eaa add scripts 2023-08-22 20:18:39 +02:00
urosm 998ea6e42a add `python` config 2023-08-22 20:18:39 +02:00
urosm cc66118772 add `user-dirs.dirs` 2023-08-22 20:18:39 +02:00
urosm eddb9a8fff add `mimeapps.list` 2023-08-22 20:18:39 +02:00
urosm 75fa902bfa add `mpv` config 2023-08-22 20:18:39 +02:00
urosm 8dc65c8ed9 add `zathura` config 2023-08-22 20:18:39 +02:00
urosm 1c7cebe96d add `fontconfig` config 2023-08-22 20:18:39 +02:00
urosm e2a38aa745 add `mako` config 2023-08-22 20:18:39 +02:00
urosm 1c1b7ead4b add `fuzzel` config 2023-08-22 20:18:39 +02:00
urosm 49afab4b07 add `foot` config 2023-08-22 20:18:39 +02:00
urosm 1711a33d64 add `swaylock` config 2023-08-22 20:18:39 +02:00
urosm 1420473a3b add `swayidle` config 2023-08-22 20:18:39 +02:00
urosm 81d284d259 add `sway` config 2023-08-22 20:18:39 +02:00
urosm e4ee10e911 add `wireguard` config 2023-08-22 20:18:39 +02:00
urosm 319a5cba72 add `NetworkManager` config 2023-08-22 20:18:39 +02:00
urosm 3d095f3875 add `apt` config 2023-08-22 20:18:39 +02:00
urosm 02ff07a144 add `sudo` config 2023-08-22 20:18:39 +02:00
urosm d3e7ca8946 add `readline` config 2023-08-22 20:18:39 +02:00
urosm 90c1c701ee add `.bashrc` 2023-08-22 20:18:36 +02:00
1 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ PS1="\[\e]0;\u@\h: \w\a\]$PS1"
# functions
# stat
st() {
find "${1-.}" -mindepth 0 -maxdepth 1 -printf '%m %u %g %Y %p\n' |
find "${1-.}" -maxdepth 1 -printf '%m %u %g %y %P\n' |
sort -V -k 4,5 | column -t -N 'i,u,g,t,n' -R 'i,u' -d
}
@ -36,11 +36,11 @@ alias q="exit"
alias :q="exit"
# grep
alias grep="grep --color=auto"
alias grep="grep --color"
# ls
alias ls="ls --color=auto"
alias ll="ls --group-directories-first -A1v"
alias ls="ls --color"
alias ll="ls -AFv1 --group-directories-first"
# nvim
alias :e="nvim"