add some file checks when running commands/setting variables

This commit is contained in:
frosty 2024-05-18 15:16:05 -04:00
parent ac61d838b2
commit 1ffdd7116e
2 changed files with 4 additions and 4 deletions

View file

@ -3,9 +3,9 @@
xrandr --dpi 96
# shellcheck disable=SC1091
. "$XDG_DATA_HOME/screenlayout"
xwallpaper --zoom "$XDG_DATA_HOME/wallpaper"
xrdb -merge "$XDG_CONFIG_HOME/X11/xresources"
[ -f "$XDG_DATA_HOME/screenlayout" ] && . "$XDG_DATA_HOME/screenlayout"
[ -f "$XDG_DATA_HOME/wallpaper" ] && xwallpaper --zoom "$XDG_DATA_HOME/wallpaper"
[ -f "$XDG_CONFIG_HOME/X11/xresources" ] && xrdb -merge "$XDG_CONFIG_HOME/X11/xresources"
xinput set-prop "SOAI USB Gaming Mouse" "libinput Accel Profile Enabled" 0 1 0
xinput set-prop "SOAI USB Gaming Mouse" "libinput Accel Speed" 0

View file

@ -29,4 +29,4 @@ export NODE_REPL_HISTORY="$XDG_DATA_HOME/node_repl_history"
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
export CUDA_CACHE_PATH="$XDG_CACHE_HOME/nv"
export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority"
export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"
[ -f "$XDG_CONFIG_HOME/X11/xinitrc" ] && export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"