22 lines
606 B
Bash
22 lines
606 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export XKB_DEFAULT_LAYOUT="pl"
|
||
|
export WLR_RENDERER=vulkan
|
||
|
export WLR_NO_HARDWARE_CURSORS=1
|
||
|
export MOZ_ENABLE_WAYLAND=1
|
||
|
export SDL_VIDEODRIVER=wayland
|
||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||
|
export QT_QPA_PLATFORM=wayland
|
||
|
export __GLX_VENDOR_LIBRARY_NAME=nvidia
|
||
|
export XDG_CURRENT_DESKTOP=qtile
|
||
|
export XDG_SESSION_DESKTOP=qtile
|
||
|
export XCURSOR_SIZE=24
|
||
|
|
||
|
qtile start -b wayland
|
||
|
|
||
|
exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
|
||
|
exec hash dbus-update-activation-environment 2>/dev/null && \
|
||
|
dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
|
||
|
|
||
|
|