Fix LC_* stuff and passgen (horcruxing); Add delay and side-view mode to bspwm

This commit is contained in:
Tobias Reisinger 2021-02-23 16:33:23 +01:00
parent daef727a61
commit eca7cebedd
7 changed files with 43 additions and 22 deletions

View file

@ -1,26 +1,31 @@
#!/usr/bin/env sh
[ -f "$HOME/.config/user-dirs.dirs" ] && source "$HOME/.config/user-dirs.dirs"
source "$HOME/.config/user-dirs.dirs"
source "$XDG_CONFIG_HOME/locale.conf"
export CM_LAUNCHER='rofi'
export EDITOR='/usr/bin/vim'
export GOPATH="$HOME/.local/share/go"
export GOPATH="$XDG_DATA_HOME/go"
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
export MAILCAPS="$HOME/.config/mailcap/mailcaprc"
export MARKPATH="$HOME/.config/zsh/jump_marks"
export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
export NOTMUCH_CONFIG="$HOME/.config/notmuch/config"
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"
export OSH="$HOME/.config/bash/oh-my-bash"
export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
export PASSWORD_STORE_GENERATED_LENGTH='64'
export PATH=/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$HOME/.local/bin:$GOPATH/bin
export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPATH/bin
export VIMINIT="source $HOME/.config/vim/vimrc"
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
export ZDOTDIR="$HOME/.config/zsh"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
export ZSH="$ZDOTDIR/oh-my-zsh"
### conditionals
[ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"