mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
Merge branch 'arch' into gentoo
This commit is contained in:
commit
866a599176
|
@ -14,16 +14,13 @@ export EDITOR="nvim"
|
||||||
export BROWSER="firefox"
|
export BROWSER="firefox"
|
||||||
export TERMINAL="Alacrity"
|
export TERMINAL="Alacrity"
|
||||||
|
|
||||||
# Add all ~/.local/bin folders to PATH
|
|
||||||
PATH+=":${$(find ~/.local/bin -type d | tr '\n' ':')%%:}"
|
|
||||||
|
|
||||||
# XDG Standard paths
|
# XDG Standard paths
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
export XDG_CACHE_HOME="$HOME/.cache"
|
export XDG_CACHE_HOME="$HOME/.cache"
|
||||||
export XDG_DATA_HOME="$HOME/.local/share"
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||||||
export XDG_RUNTIME_DIR="/run/user/$UID"
|
export XDG_RUNTIME_DIR="/run/user/$UID"
|
||||||
|
|
||||||
# Pre-Application XDG settings
|
# Per-Application XDG settings
|
||||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||||
export XINITRC="$XDG_CONFIG_HOME/x11/xinitrc"
|
export XINITRC="$XDG_CONFIG_HOME/x11/xinitrc"
|
||||||
#export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" # This line will break some DMs.
|
#export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" # This line will break some DMs.
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
# .zshrc/.bashrc, which will run whenever a new terminal
|
# .zshrc/.bashrc, which will run whenever a new terminal
|
||||||
# is opened.
|
# is opened.
|
||||||
|
|
||||||
|
# Add all folders in ~/.local/bin into PATH
|
||||||
|
# Some window managers require this line to be in profile
|
||||||
|
# not in .zshenv
|
||||||
|
PATH+=":${$(find ~/.local/bin -type d | tr '\n' ':')%%:}"
|
||||||
|
|
||||||
# Start graphical session automatically on tty1 if startx is aviable
|
# Start graphical session automatically on tty1 if startx is aviable
|
||||||
if [ "$(tty)" = "/dev/tty1" ] && [ "$UID" != 0 ]; then
|
if [ "$(tty)" = "/dev/tty1" ] && [ "$UID" != 0 ]; then
|
||||||
|
|
Loading…
Reference in a new issue