diff --git a/src/helpers/Splashes.hpp b/src/helpers/Splashes.hpp index f5990506..1d989dfa 100644 --- a/src/helpers/Splashes.hpp +++ b/src/helpers/Splashes.hpp @@ -49,6 +49,13 @@ inline const std::vector SPLASHES = { "Ding ding pch n daa, bam-ba-ba-re-bam baram bom bom baba-bam-bam-bommm", "Súbeme la radio que esta es mi canción", "I'm beggin', beggin' you", + "Never Gonna Give You Up", + "People are strange, when you're a stranger", + "Sun is shining in the sky, there ain't a cloud in sight", + "Wham, bam, shang a lang", + "Did you think I'd die? Oh, no, not I, I will survive.", + "But I would walk 500 miles, and I would walk 500 more", + "COUNTRY ROADS, TAKE ME HOME!", "Never gonna let you down (I am trying!)", "\"I use Arch, btw\" - John Cena", "\"Hyper\".replace(\"e\", \"\")", @@ -62,4 +69,4 @@ inline const std::vector SPLASHES = { "The AUR packages always work, except for the times they don't.", "Funny animation compositor woo" // clang-format on -}; \ No newline at end of file +}; diff --git a/src/main.cpp b/src/main.cpp index 27a768ba..9e06db60 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -34,7 +34,11 @@ int main(int argc, char** argv) { setenv("_JAVA_AWT_WM_NONREPARENTING", "1", 1); setenv("MOZ_ENABLE_WAYLAND", "1", 1); setenv("XDG_CURRENT_DESKTOP", "Hyprland", 1); - + setenv("XDG_SESSION_TYPE", "wayland", 1); + setenv("QT_QPA_PLATFORM", "wayland", 1); + setenv("SDL_VIDEODRIVER", "wayland", 1); + setenv("OZONE_PLATFORM", "wayland", 1); + // parse some args std::string configPath; bool ignoreSudo = false;