puntos/.profile

30 lines
646 B
Text
Raw Normal View History

#!/bin/sh
. /etc/profile
if test -z "${XDG_RUNTIME_DIR}"; then
export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
if ! test -d "${XDG_RUNTIME_DIR}"; then
mkdir "${XDG_RUNTIME_DIR}"
chmod 0700 "${XDG_RUNTIME_DIR}"
fi
fi
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
# export PATH="$HOME/.local/share/theme.sh:$PATH"
export MOZ_ENABLE_WAYLAND=1
2021-10-12 21:46:50 +00:00
export EDITOR=nvim
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
2021-10-08 20:51:40 +00:00
export XKB_DEFAULT_LAYOUT=us #-nulo
export XKB_DEFAULT_VARIANT=altgr-intl
export XKB_DEFAULT_OPTIONS=caps:escape
export XCURSOR_THEME=Adwaita
2021-10-14 20:15:32 +00:00
export QT_STYLE_OVERRIDE=Adwaita-Dark