diff --git a/hyprpm/src/core/PluginManager.cpp b/hyprpm/src/core/PluginManager.cpp index 4b026090..50f2d443 100644 --- a/hyprpm/src/core/PluginManager.cpp +++ b/hyprpm/src/core/PluginManager.cpp @@ -363,9 +363,9 @@ bool CPluginManager::updateHeaders(bool force) { std::filesystem::remove_all("/tmp/hyprpm/hyprland"); } - progress.printMessageAbove(std::string{Colors::YELLOW} + "!" + Colors::RESET + " Cloning https://github.com/hyprwm/hyprland, this might take a moment."); + progress.printMessageAbove(std::string{Colors::YELLOW} + "!" + Colors::RESET + " Cloning https://github.com/Trensa-Organization/hyprland, this might take a moment."); - std::string ret = execAndGet("cd /tmp/hyprpm && git clone --recursive https://github.com/hyprwm/hyprland hyprland"); + std::string ret = execAndGet("cd /tmp/hyprpm && git clone --recursive https://github.com/Trensa-Organization/hyprland hyprland"); if (!std::filesystem::exists("/tmp/hyprpm/hyprland")) { std::cerr << "\n" << Colors::RED << "✖" << Colors::RESET << " Could not clone the hyprland repository. shell returned:\n" << ret << "\n"; diff --git a/src/main.cpp b/src/main.cpp index e1f43ad0..a084baf1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -34,6 +34,12 @@ 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("GDK_BACKEND", "wayland", 1); + setenv("enable-features", "UseOzonePlatform", 1); + setenv("ozone-platform", "wayland", 1); + setenv("ELECTRON_OZONE_PLATFORM_HINT", "wayland", 1); + setenv("GTK_MODULES", "gail:atk-bridge:canberra-gtk-module", 1); + setenv("ACCESSIBILITY_ENABLED", "1", 1); // parse some args std::string configPath;