switch x/xmonad for wayland/river

This commit is contained in:
Felix Van der Jeugt 2024-08-02 11:09:49 +02:00
parent 3ffb35cc2e
commit dac9f903c9
8 changed files with 81 additions and 131 deletions

View file

@ -8,6 +8,7 @@ export XDG_RUNTIME_DIR="/tmp/runtime-$(whoami)"
mkdir -p "$XDG_RUNTIME_DIR"
chmod 0700 "$XDG_RUNTIME_DIR"
export XDG_DOWNLOAD_DIR="/tmp"
export XDG_DESKTOP_DIR="/tmp"
# Local scripts
export CABAL_HOME="/data/homes/cabal"
@ -35,3 +36,8 @@ if [ -d "$HOME/.cache/ncspot/librespot/files" ]; then
fi
#stty -ixon # disable <C-s>
# Start river if logging in on TTY 1
if [ "$(tty)" = "/dev/tty1" ]; then
exec river
fi