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/apps/de/x/init

15 lines
465 B
Plaintext
Raw Normal View History

2020-01-20 09:12:52 -06:00
#!/usr/bin/env sh
2020-01-17 03:02:53 -06:00
# as far as I can tell, this file is only executed when you run startx from the
# TTY - you probably want to modify xprofile
[ -z "$XDG_CONFIG_HOME" ] && export XDG_CONFIG_HOME="$HOME/.config"
[ -z "$DOTFILES_PATH" ] && export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
2020-01-20 09:12:52 -06:00
. "$DOTFILES_PATH/bin/prelude"
2020-01-17 03:02:53 -06:00
[ -f "$HOME/.xprofile" ] && . "$HOME/.xprofile"
2020-02-06 20:42:39 -06:00
[ -f "$ENV_PATH/x/init" ] && . "$ENV_PATH/x/init"
2020-01-17 03:02:53 -06:00
exec "$DOTFILES_PATH/apps/de/bspwm/wmstart"