29 lines
767 B
Bash
Executable file
29 lines
767 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This script will seriously nuke your home directory. You should really read
|
|
# each of the scripts that will be executed in those process.
|
|
|
|
export DOTFILES_PATH="$HOME/.dotfiles"
|
|
export REPOSITORY_PATH="$HOME/Documents/open-source"
|
|
export WINDOW_GAP=5
|
|
export BORDER_WIDTH=1
|
|
|
|
source "$DOTFILES_PATH/scripts/get_x_fonts.sh"
|
|
source "$DOTFILES_PATH/scripts/get_color.sh"
|
|
|
|
export BAR_ON_XINIT=0
|
|
export BAR_FIFO="$DOTFILES_PATH/wm_bar_fifo.lock"
|
|
export BAR_TOP=0
|
|
export BAR_MARGIN=$WINDOW_GAP
|
|
export BAR_HEIGHT=20
|
|
export BAR_BORDER_WIDTH=1
|
|
export BAR_FONT_FAMILY="$PRIMARY_FONT_FAMILY_WITH_SIZE"
|
|
export BAR_UNDERLINE=1
|
|
export BAR_WID="wmpanel"
|
|
|
|
# load per-device bashrc_env if it exists
|
|
if [ -a "$HOME/.bashrc_env" ]; then
|
|
. "$HOME/.bashrc_env"
|
|
fi
|
|
|