diff options
author | katherine <ageha@airen-no-jikken.icu> | 2023-12-02 21:17:34 -0700 |
---|---|---|
committer | katherine <ageha@airen-no-jikken.icu> | 2023-12-02 21:17:34 -0700 |
commit | 2ee034eb2b93ca5a6cb788e2882da3fec7aa9b7d (patch) | |
tree | a3e55de294206840c50e6e45922baff2da8ce2ed /.zprofile | |
parent | 93fa0e7c59b2f6c8ad273906177492203535e0e9 (diff) | |
download | dotfiles-2ee034eb2b93ca5a6cb788e2882da3fec7aa9b7d.tar.gz |
run all xorg setup stuff from hlfwm
test-ran a wayland compositor and it borked some kind of settings
something, but shift everything this way seems to function and is
probably anyways cleaner
Diffstat (limited to '.zprofile')
-rw-r--r-- | .zprofile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,8 @@ [[ -f /etc/profile ]] && \ emulate sh -c 'source /etc/profile' +source "$HOME/.config/init/vars" + ################# SET TERMCMD ################# if [[ ! -z $(whence alacritty) ]] then export TERMCMD=alacritty @@ -17,7 +19,8 @@ elif [[ ! -z $(whence vi) ]] then export EDITOR=vi fi -[[ $USER -ne "root" ]] || return +############### ROOT BAILS HERE ############### +[[ $USER -ne "root" ]] && return ############# STORE VIMTAGS IN TMP ############ [[ -d $tmpdir ]] && \ |