diff options
author | Marc Coquand <marc@mccd.space> | 2024-06-25 11:28:53 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-06-25 11:28:53 -0500 |
commit | 97ce8456231b997135be6c5f1afaee08eff2cbb1 (patch) | |
tree | 32f7059aad1b6f9e69c37dd5a5b963037d9b7a06 /profile | |
parent | 220906303fe6a69760514d2dcf49e5abfa079657 (diff) | |
download | rcm-97ce8456231b997135be6c5f1afaee08eff2cbb1.tar.gz rcm-97ce8456231b997135be6c5f1afaee08eff2cbb1.tar.bz2 rcm-97ce8456231b997135be6c5f1afaee08eff2cbb1.zip |
Updates
Diffstat (limited to '')
-rw-r--r-- | profile | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -1,13 +1,20 @@ if [ -e /home/mccd/.nix-profile/etc/profile.d/nix.sh ]; then . /home/mccd/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer -export EDITOR="kak" +export LIBSEAT_BACKEND=logind +export QS_QPA_PLATFORM=wayland-egl +export MOZ_ENABLE_WAYLAND="1" +export XDG_CURRENT_DESKTOP="wlroots" +export EDITOR="vim" export GDK_DPI_SCALE="1.5" export GDK_SCALE="1.5" export XCURSOR_SIZE="32" -export PF_INFO="ascii title editor shell wm" +export PF_INFO="ascii title os editor shell wm" export PF_ALIGN="5" export PF_COLOR="0" + +test -r /home/mccd/.opam/opam-init/init.sh && . /home/mccd/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true export PATH=${PATH}:~/.local/bin +export XDG_DATA_DIRS=${XDG_DATA_DIRS}:~/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share export ENV=$HOME/.kshrc export HISTSIZE=65535 export HISTFILE=$HOME/.history @@ -15,7 +22,5 @@ export STITCH_DIRECTORY=/home/mccd/notes export STITCH_GREP_CMD=ugrep export TERM=xterm-256color -test -r /home/mccd/.opam/opam-init/init.sh && . /home/mccd/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true - -if [ "$(tty)" == "/dev/tty1" ]; then exec dbus-run-session startx; fi +if [ "$(tty)" == "/dev/tty1" ]; then exec dbus-run-session sway; fi |