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

21 lines
464 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
DOTFILES_PATH=$HOME/.dotfiles
REPOSITORY_PATH=$HOME/Documents/Repositories
WINDOW_GAP=20
BORDER_WIDTH=2
2016-01-07 02:16:53 -06:00
BAR_FIFO="$DOTFILES_PATH/wm_bar_fifo.lock"
2016-01-07 02:17:06 -06:00
BAR_TOP=0
2016-01-07 02:16:53 -06:00
BAR_MARGIN=$WINDOW_GAP
BAR_HEIGHT=30
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