summaryrefslogtreecommitdiff
path: root/river/init
blob: 5fcb165d3e69566af12b46f7868fe5d38a606455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env sh

export SDL_VIDEODRIVER=wayland

export QT_QPA_PLATFORM=wayland
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1

export VDPAU_DRIVER=radeonsi
export LIBVA_DRIVER_NAME=radeonsi

systemctl --user import-environment DISPLAY WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
hash dbus-update-activation-environment 2>/dev/null && \
     dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY XDG_CURRENT_DESKTOP

for prog in channel kanshi gammastep waybar hand awww-daemon; do
    killall -9 $prog
done

channel &
kanshi &
gammastep -l 51.8:-1.3 -t 5000:4000 &
waybar &
handy --start-hidden &

machi