Skip to content

Commit 7d6ada2

Browse files
committed
More support for OpenBSD + video dir in open desktop settings
1 parent 2bd2d38 commit 7d6ada2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bash/.bashrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ alias el='tail -f /var/log/escenic/engine1{.out,-messages,-catalina.out,-tomcat}
7070
if [[ $(uname -s) == Linux ]]; then
7171
alias al="tail -f /opt/tomcat-engine1/logs/access.$(date --iso).log | egrep -v '(indexer|lock|changelog)'"
7272
alias ls='ls -ltrh --color'
73+
alias grep='grep --text --ignore-case --color --exclude-dir={.svn,.git,.hg,CVS}'
7374
elif [[ $(uname -s) == OpenBSD ]]; then
7475
alias ls='gls -ltrh --color'
76+
alias grep='grep --text --ignore-case'
7577
fi
7678

7779
alias emacs='emacs -fn terminus-bold-14'
@@ -92,7 +94,6 @@ alias gln='git --no-pager log'
9294
alias glp='git log --decorate --patch --word-diff=color'
9395
alias glpn='git --no-pager log -p'
9496
alias gpr='git pull --rebase'
95-
alias grep='grep --text --ignore-case --color --exclude-dir={.svn,.git,.hg,CVS}'
9697
alias gri='git rebase -i'
9798
alias gria='git rebase --interactive --autosquash'
9899
alias gs='git status'

xdg/.config/user-dirs.dirs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ XDG_PUBLICSHARE_DIR="$HOME/tmp"
1212
XDG_DOCUMENTS_DIR="$HOME/doc"
1313
XDG_MUSIC_DIR="$HOME/music"
1414
XDG_PICTURES_DIR="$HOME/pictures"
15-
XDG_VIDEOS_DIR="$HOME/"
15+
XDG_VIDEOS_DIR="$HOME/videos"

0 commit comments

Comments
 (0)