Separate wallpaper and lockscreen by host

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-04-23 22:52:04 +02:00
parent 14e80e6bf2
commit b4b02847dd
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
13 changed files with 83 additions and 49 deletions

View file

@ -11,7 +11,17 @@
#
# USAGE:
# This script is sourced by .bashrc
. "${XDG_BIN_HOME}/utils"
if [ -f "${XDG_BIN_HOME}/utils" ]; then
. "${XDG_BIN_HOME}/utils"
fi
# XDG_Base_Directories
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_CACHE_HOME="${HOME}/.cache"
export XDG_DATA_HOME="${HOME}/.local/share"
export XDG_BIN_HOME="${HOME}/.local/bin"
export XDG_LOG_HOME="${HOME}/.local/log"
export DOTFILES="${HOME}/dotfiles"
# XDG Overrides for unsupported programs
export HTTPIE_CONFIG_DIR="${XDG_CONFIG_HOME}/httpie"
@ -53,7 +63,10 @@ export SAVEHIST=1000
export HISTSIZE=1000
export HISTFILESIZE=2000
mkdir -p "${XDG_DATA_HOME}/zsh/zcompdump-${ZSH_VERSION}"
compinit -d "${XDG_DATA_HOME}/zsh/zcompdump-${ZSH_VERSION}"
if [ -n "$(command -v compinit)" ]; then
compinit -d "${XDG_DATA_HOME}/zsh/zcompdump-${ZSH_VERSION}"
fi
# Setting applications
export VISUAL=vim