variables exports
This commit is contained in:
parent
c335b4c656
commit
93e61ef1df
|
@ -3,22 +3,22 @@
|
||||||
# This script will seriously nuke your home directory. You should really read
|
# This script will seriously nuke your home directory. You should really read
|
||||||
# each of the scripts that will be executed in those process.
|
# each of the scripts that will be executed in those process.
|
||||||
|
|
||||||
DOTFILES_PATH="$HOME/.dotfiles"
|
export DOTFILES_PATH="$HOME/.dotfiles"
|
||||||
REPOSITORY_PATH="$HOME/Documents/Repositories"
|
export REPOSITORY_PATH="$HOME/Documents/Repositories"
|
||||||
WINDOW_GAP=20
|
export WINDOW_GAP=20
|
||||||
BORDER_WIDTH=2
|
export BORDER_WIDTH=2
|
||||||
|
|
||||||
source "$DOTFILES_PATH/scripts/get_x_fonts.sh"
|
source "$DOTFILES_PATH/scripts/get_x_fonts.sh"
|
||||||
source "$DOTFILES_PATH/scripts/get_color.sh"
|
source "$DOTFILES_PATH/scripts/get_color.sh"
|
||||||
|
|
||||||
BAR_ON_XINIT=0
|
export BAR_ON_XINIT=0
|
||||||
BAR_FIFO="$DOTFILES_PATH/wm_bar_fifo.lock"
|
export BAR_FIFO="$DOTFILES_PATH/wm_bar_fifo.lock"
|
||||||
BAR_TOP=0
|
export BAR_TOP=0
|
||||||
BAR_MARGIN=$WINDOW_GAP
|
export BAR_MARGIN=$WINDOW_GAP
|
||||||
BAR_HEIGHT=28
|
export BAR_HEIGHT=28
|
||||||
BAR_BORDER_WIDTH=2
|
export BAR_BORDER_WIDTH=2
|
||||||
BAR_FONT_FAMILY="$PRIMARY_FONT_FAMILY_WITH_SIZE"
|
export BAR_FONT_FAMILY="$PRIMARY_FONT_FAMILY_WITH_SIZE"
|
||||||
BAR_UNDERLINE=1
|
export BAR_UNDERLINE=1
|
||||||
|
|
||||||
# load per-device bashrc_env if it exists
|
# load per-device bashrc_env if it exists
|
||||||
if [ -a "$HOME/.bashrc_env" ]; then
|
if [ -a "$HOME/.bashrc_env" ]; then
|
||||||
|
|
3
x/reset_monitors.bash
Executable file
3
x/reset_monitors.bash
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
|
Reference in a new issue