blob: 2b9319ecf33c70e2ff39c3c3e0b7923688edad4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# exec >/tmp/wlcustom.log 2>&1
# removes window outlines and stuff
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
# Firefox fix just in case
export MOZ_ENABLE_WAYLAND=1
# If Chromium dialogs aren't working these are suspect
# pacman -S xdg-desktop-portal-wlr
export XDG_CURRENT_DESKTOP=river
export QT_QPA_PLATFORMTHEME=qt6ct
. ~/.kshrc
export ENV=$HOME/.kshrc
export SSH_ASKPASS=bemenu_askpass
export SSH_ASKPASS_REQUIRE=force
export BEMENU_OPTS="--fn 'Curie 10' --tb '#3B4252' --tf '#8FBCBB' --cf '#E5E9F0' --nb '#2e3440' --ab '#3b4252' --nf '#e5e9f0' --af '#e5e9f0' --fb '#2e3440' --ff '#a3be8c' --hb '#2e3440' --hf '#a3be8c' "
exec river
|