Move everything that is desirable independent of the WM or shell into xinitrc. Move .Xresources and .Xmodmap into .config/X11. Remove all unneeded GNOME bits from i3 config. Make compositor launch script portable. Add locker symlink and launch.sh similar to the compositor.
13 lines
287 B
Bash
13 lines
287 B
Bash
## Author: druckdev
|
|
## Created: 2019-10-21
|
|
|
|
setopt NO_GLOBAL_RCS
|
|
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
|
|
ZDOTDIR="${XDG_CONFIG_HOME:-$HOME/.config}/zsh"
|
|
|
|
[ ! -r "$ZDOTDIR/.zshenv" ] || . "$ZDOTDIR/.zshenv"
|