https://github.com/uttarayan21/anyrun-hyprwin
An anyrun plugin that lets you move to a window in hyprland
https://github.com/uttarayan21/anyrun-hyprwin
anyrun anyrun-plugin hyprland nix nix-flake
Last synced: about 1 month ago
JSON representation
An anyrun plugin that lets you move to a window in hyprland
- Host: GitHub
- URL: https://github.com/uttarayan21/anyrun-hyprwin
- Owner: uttarayan21
- Created: 2023-09-14T14:01:13.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-10T18:34:37.000Z (3 months ago)
- Last Synced: 2025-04-06T15:05:05.924Z (about 1 month ago)
- Topics: anyrun, anyrun-plugin, hyprland, nix, nix-flake
- Language: Nix
- Homepage:
- Size: 165 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# anyrun-hyprwin
An [anyrun](https://github.com/Kirottu/anyrun) plugin to show active [hyprland](https://hyprland.org/) windows and focus them on selection

How to install:
```sh
just install
```
How to build:
```sh
cargo build --release # or `just build`
```And add `libhyprwin.so` to `plugins` array in your `~/.config/anyrun/config.ron`
```diff
diff --git a/config/anyrun/config.ron b/config/anyrun/config.ron
index 80f32cc..d043da0 100644
--- a/config/anyrun/config.ron
+++ b/config/anyrun/config.ron
@@ -36,6 +36,7 @@ Config(
// List of plugins to be loaded by default, can be specified with a relative path to be loaded from the
// `/plugins` directory or with an absolute path to just load the file the path points to.
plugins: [
+ "libhyprwin.so",
"librandr.so",
"libapplications.so",
"libshell.so",
```## Config
```ron
Config(
prefix: ":hyprland",
icons: {
"org.wezfurlong.wezterm": "wezterm";
}
)
```