blob: 985b57b1b951c69d5ff951cdae93cb31e8da91c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# wrapper script to start sway, in the same way that we "startx":
# from https://www.dwarmstrong.org/sway/
export QT_QPA_PLATFORM=wayland
# start sway
export XDG_CURRENT_DESKTOP=sway
export XDG_SESSION_DESKTOP=sway
sway -c ~/.config/sway/config --unsupported-gpu
|