dotfiles/.config/zsh/.zprofile

9 lines
218 B
Text
Raw Normal View History

# create the missing directories
2021-09-12 11:03:42 +02:00
[ ! -d "$HISTFILE_DIR" ] && mkdir -p "$HISTFILE_DIR"
[ ! -d "$COMPDIR" ] && mkdir -p "$COMPDIR"
2014-12-20 11:28:15 +01:00
# transmission
2020-05-03 20:22:12 +02:00
if hash transmission-daemon 2>/dev/null; then
transmission-daemon
fi