diff --git a/include/bash_profile b/include/bash_profile new file mode 100644 index 0000000..8703f96 --- /dev/null +++ b/include/bash_profile @@ -0,0 +1,7 @@ +# To be sourced by the user's .bash_profile script. +# +# Since install scripts like to append random stuff to bash_profile, +# and it may contain other things specific to the system config, +# it's not feasible to generate and install a universal bash_profile. + +export PATH="$HOME/bin:$HOME/.local/bin:$PATH" diff --git a/include/bashrc b/include/bashrc new file mode 100644 index 0000000..8aab263 --- /dev/null +++ b/include/bashrc @@ -0,0 +1,23 @@ +# To be sourced by the user's .bashrc script. +# +# Since install scripts like to append random stuff to bashrc, +# and it may contain other things specific to the system config, +# it's not feasible to generate and install a universal bashrc. + +# Aliases +alias dsway='dbus-run-session sway' + +export EDITOR=hx + +# SSH agent +[ -n "$WAYLAND_DISPLAY" ] && eval $(keychain --confirm --eval --timeout 60 -q) + +# Vivado workaround +export _JAVA_AWT_WM_NONREPARENTING=1 + +# Force firefox to use wayland +export MOZ_ENABLE_WAYLAND=1 +export MOZ_DBUS_REMOTE=1 + +# Force Adwaita Light +export GTK_THEME=Adwaita