13 lines
237 B
Text
13 lines
237 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Session
|
||
|
export XDG_SESSION_TYPE=wayland
|
||
|
export XDG_SESSION_DESKTOP=wayfire
|
||
|
export XDG_DESKTOP=wayfire
|
||
|
export GTK_THEME=Plata-Noir-Compact
|
||
|
|
||
|
# Wayland compatibility
|
||
|
export GDK_BACKEND=wayland
|
||
|
|
||
|
exec dbus-run-session wayfire $@
|