20 lines
477 B
Bash
20 lines
477 B
Bash
#!/bin/sh
|
|
|
|
# Environment exports
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
export VISUAL=nvim
|
|
export EDITOR=nvim
|
|
export BROWSER=/usr/bin/librewolf
|
|
export LANG=en_US.UTF-8
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
export XDG_DATA_DIRS="/usr/share"
|
|
export XDG_CURRENT_DESKTOP="sway"
|
|
export XDG_SESSION_DESKTOP="sway"
|
|
export XDG_SESSION_TYPE="wayland"
|
|
export GTK_ICON_THEME="Papirus"
|
|
export QT_QPA_PLATFORMTHEME=gtk3
|
|
|