This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/variables.bash

29 lines
767 B
Bash
Raw Normal View History

2016-01-06 11:55:04 -06:00
#!/usr/bin/env bash
2016-01-06 12:23:59 -06:00
# This script will seriously nuke your home directory. You should really read
# each of the scripts that will be executed in those process.
2016-01-06 11:55:04 -06:00
2016-01-17 08:52:17 -06:00
export DOTFILES_PATH="$HOME/.dotfiles"
2016-06-03 13:57:49 -05:00
export REPOSITORY_PATH="$HOME/Documents/open-source"
2016-07-14 15:22:19 -05:00
export WINDOW_GAP=5
export BORDER_WIDTH=1
2016-01-06 11:55:04 -06:00
source "$DOTFILES_PATH/scripts/get_x_fonts.sh"
source "$DOTFILES_PATH/scripts/get_color.sh"
2016-01-17 08:52:17 -06:00
export BAR_ON_XINIT=0
export BAR_FIFO="$DOTFILES_PATH/wm_bar_fifo.lock"
export BAR_TOP=0
2016-01-17 08:52:17 -06:00
export BAR_MARGIN=$WINDOW_GAP
2016-04-20 16:09:02 -05:00
export BAR_HEIGHT=20
export BAR_BORDER_WIDTH=1
2016-01-17 08:52:17 -06:00
export BAR_FONT_FAMILY="$PRIMARY_FONT_FAMILY_WITH_SIZE"
export BAR_UNDERLINE=1
export BAR_WID="wmpanel"
2016-01-07 02:16:53 -06:00
2016-01-06 11:55:04 -06:00
# load per-device bashrc_env if it exists
if [ -a "$HOME/.bashrc_env" ]; then
. "$HOME/.bashrc_env"
fi