Lots of changes
This commit is contained in:
parent
f0f752b6c5
commit
e43e6971d9
24 changed files with 98 additions and 509 deletions
38
root/usr/local/bin/sway-run
Executable file
38
root/usr/local/bin/sway-run
Executable file
|
@ -0,0 +1,38 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Set environment variables for Sway
|
||||
|
||||
# Firefox
|
||||
export MOZ_ENABLE_WAYLAND=1
|
||||
export MOZ_USE_XINPUT2=1
|
||||
export MOZ_WEBRENDER=1
|
||||
|
||||
# Enable xdg-desktop-portal-wlr
|
||||
export XDG_CURRENT_DESKTOP=sway
|
||||
|
||||
# Fix java on wayland
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel'
|
||||
|
||||
# Enable qt5 theming and wayland support
|
||||
export QT_QPA_PLATFORMTHEME=qt5ct
|
||||
export QT_QPA_PLATFORM=wayland
|
||||
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
|
||||
|
||||
# Fix redshift on wlroots
|
||||
export WLR_DRM_NO_ATOMIC=1
|
||||
|
||||
# Run sway
|
||||
dbus-run-session sway
|
||||
|
||||
# Unset the variables after quitting Sway
|
||||
unset MOZ_ENABLE_WAYLAND
|
||||
unset MOZ_USE_XINPUT2
|
||||
unset MOZ_WEBRENDER
|
||||
unset _JAVA_AWT_WM_NONREPARENTING
|
||||
unset _JAVA_OPTIONS
|
||||
unset QT_QPA_PLATFORMTHEME
|
||||
unset QT_QPA_PLATFORM
|
||||
unset QT_WAYLAND_DISABLE_WINDOWDECORATION
|
||||
unset WLR_DRM_NO_ATOMIC
|
||||
unset XDG_CURRENT_DESKTOP
|
Loading…
Add table
Add a link
Reference in a new issue