This is a collection of dotfiles and scripts for my bspwm setup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

99 lines
2.5 KiB

## Settings
# Directories
export CAPTURE="$HOME/pictures/screen-captures"
export FPATH="$FPATH:$HOME/.scripts/completion"
export PATH="$PATH:$HOME/.scripts"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
mkdir -p "$XDG_CACHE_HOME/zsh"
# Editor
export ALTERNATE_EDITOR=""
export EDITOR="emacsclient"
export VISUAL="emacsclient"
# Files
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc"
export PLATFORMIO_HOME_DIR="$XDG_DATA_HOME/platformio"
export R_ENVIRON_USER="$XDG_CONFIG_HOME/R/Renviron"
# HiDPI screen
export HIDPI=true
# GPG
export GNUPGHOME="$XDG_CONFIG_HOME/gnupg"
# GTK
if [ "$HIDPI" = true ]; then
export GDK_SCALE=2
export GDK_DPI_SCALE=0.5
fi
# Gradle
export GRADLE_USER_HOME="$XDG_DATA_HOME/gradle"
# Less
export LESS="-R"
export LESSHISTFILE="-"
export LESS_TERMCAP_mb="$(printf '%b' '\e[01;31m')" # begin blink
export LESS_TERMCAP_md="$(printf '%b' '\e[01;34m')" # begin bold
export LESS_TERMCAP_me="$(printf '%b' '\e[0m')" # reset blink/bold
export LESS_TERMCAP_so="$(printf '%b' '\e[01;107;30m')" # begin reverse video
export LESS_TERMCAP_se="$(printf '%b' '\e[0m')" # reset reverse video
export LESS_TERMCAP_us="$(printf '%b' '\e[04;95m')" # begin underline
export LESS_TERMCAP_ue="$(printf '%b' '\e[0m')" # reset underline
# npm
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
# OpenSSL
export RANDFILE="$XDG_CACHE_HOME/rnd"
# Panel
[ "$HIDPI" = true ] && export PANEL_HEIGHT=38 || export PANEL_HEIGHT=22
export PANEL_NAME="polybar_panel"
# Qt5
if [ "$HIDPI" = true ]; then
export QT_AUTO_SCREEN_SCALE_FACTOR=0
export QT_SCREEN_SCALE_FACTORS=2
fi
export QT_QPA_PLATFORMTHEME="qt5ct"
# Sudo
export SUDO_ASKPASS="$HOME/.scripts/rofipass.sh"
# Terminal
export TERMINAL="urxvt"
# Vim
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
# Web browser
export BROWSER="firefox"
# Wget
export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc"
# WM
export WM="bspwm"
# Xorg
export XINITRC="$XDG_CONFIG_HOME/xorg/xinitrc"
export XAUTHORITY="$XDG_DATA_HOME/xorg/Xauthority"
touch "$XDG_DATA_HOME/xorg/Xauthority"
# Colors, window manager colors, workspace names
# Example: *.color0: #282a2e -> COLOR0=#282a2e
# Example: WmColor.bgcolor: #404552 -> BGCOLOR=#404552
# Example: WmWorkSpace.ws0: "10" -> WS0="10"
EXPORTS=$(sed -nE \
-e 's/^\*.(\w+): *#/\U\1=#/p' \
-e 's/^WmColor.(\w+): */\U\1=/p' \
-e 's/^WmWorkSpace.(\w+): */\U\1=/p' \
"$XDG_CONFIG_HOME/xorg/Xresources")
echo "$EXPORTS" | while read -r line; do
export $line
done