Compare commits

..

No commits in common. "3b73ca7e69cc94008f32daf901b4f2ea5a49c46d" and "4fbda842fd62b697299386bfe9eead482c6aded3" have entirely different histories.

3 changed files with 0 additions and 60 deletions

View File

@ -1,9 +0,0 @@
#!/usr/bin/env bash
# Signal desktop with Wayland, notification fix & tray
set -x
# --disable-gpu - https://github.com/signalapp/Signal-Desktop/issues/2567#issuecomment-457282578
# --start-in-tray - would be nice, but then I cannot open it from there, trus --use-tray-icon
flatpak run org.signal.Signal --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu --use-tray-icon $@
set +x

View File

@ -1,25 +0,0 @@
#!/usr/bin/env bash
# Starting Plasma in Wayland with proper environment too.
set -x
# Using fcitx
export XMODIFIERS=@im=fcitx
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
# qt5ct allows theme choosing
export QT_QPA_PLATFORMTHEME="qt5ct"
# Ensuring Wayland gets used as per Arch Wiki
# 2021-02-28 https://wiki.archlinux.org/index.php/Wayland#GUI_libraries
export QT_QPA_PLATFORM=wayland
export CLUTTER_BACKEND=wayland
export SDL_VIDEODRIVER=wayland
# Breeze Dark everywhere
export GTK_THEME=Breeze-Dark
dbus-launch --exit-with-session startplasma-wayland $@
set +x

View File

@ -1,26 +0,0 @@
#!/usr/bin/env bash
# Starting sway with proper environment too. My {bash,zsh}rc handles
# exec
set -x
# Using fcitx
export XMODIFIERS=@im=fcitx
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
# qt5ct allows theme choosing
export QT_QPA_PLATFORMTHEME="qt5ct"
# Ensuring Wayland gets used as per Arch Wiki
# 2021-02-28 https://wiki.archlinux.org/index.php/Wayland#GUI_libraries
export QT_QPA_PLATFORM=wayland
export CLUTTER_BACKEND=wayland
export SDL_VIDEODRIVER=wayland
# Breeze Dark everywhere
export GTK_THEME=Breeze-Dark
dbus-launch --exit-with-session sway --unsupported-gpu $@
set +x