neodotfiles/user/.xinitrc

49 lines
1.1 KiB
Text
Raw Normal View History

2022-06-07 02:15:35 +00:00
#!/bin/sh
2022-07-05 21:06:56 +00:00
## ____ __
## / __ \_________ _/ /_____
## / / / / ___/ __ `/ //_/ _ \
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
## /_____/_/ \__,_/_/|_|\___/ My custom xinitrc
##
2022-04-18 21:29:56 +00:00
2023-05-28 06:21:31 +00:00
userresources=$HOME/.config/Xresources
usermodmap=$HOME/.config/Xmodmap
2022-04-18 21:29:56 +00:00
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
2022-07-01 06:06:16 +00:00
### ENVIRONMENT VARIABLES
export BROWSER="brave"
2023-05-28 06:21:31 +00:00
export TERMINAL="st"
export EDITOR="$HOME/.local/bin/lvim"
2022-08-17 03:32:50 +00:00
export MOZ_USE_XINPUT2=1
2023-05-28 06:21:31 +00:00
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
export WGETRC="$HOME/.config/wget/wgetrc"
export INPUTRC="$HOME/.config/inputrc"
export GNUPGHOME="$HOME/.local/share/gnupg"
export LESSHISTFILE="-"
2022-07-01 06:06:16 +00:00
2022-04-18 21:29:56 +00:00
# start window manager / desktop environment
2023-05-23 23:54:34 +00:00
exec dwm