-
Notifications
You must be signed in to change notification settings - Fork 26
Installation
github-actions[bot] edited this page Aug 2, 2026
·
2 revisions
-
For stable releases of Hyprland, add the plugin repository:
hyprpm add https://github.com/yayuuu/hyprland-scroll-overview.git
If you use a Git build of Hyprland, add the plugin from the
new-releasebranch instead:hyprpm add https://github.com/yayuuu/hyprland-scroll-overview origin/new-release
-
Build and fetch dependencies:
hyprpm update
-
Enable the plugin:
hyprpm enable scrolloverview -
To load enabled plugins automatically when Hyprland starts, run
hyprpm reloadfrom thehyprland.startevent handler in your Lua configuration:hl.on("hyprland.start", function() hl.exec_cmd("hyprpm reload") end)
-
Configure and enjoy.
-
Clone the repository and enter its directory:
git clone https://github.com/yayuuu/hyprland-scroll-overview.git cd hyprland-scroll-overview -
Build the plugin:
make
-
Load the plugin into the running Hyprland instance:
hyprctl plugin load "$(pwd)/scrolloverview.so" -
To load the plugin automatically when Hyprland starts, add it to your Lua configuration using an absolute path:
local pluginPath = "/absolute/path/to/hyprland-scroll-overview/scrolloverview.so" hl.plugin.load(pluginPath)