mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-02 02:15:57 +01:00
25 lines
440 B
Markdown
25 lines
440 B
Markdown
|
# hyprwinwrap
|
||
|
|
||
|
Clone of xwinwrap for hyprland.
|
||
|
|
||
|
Example config:
|
||
|
```ini
|
||
|
plugin {
|
||
|
hyprwinwrap {
|
||
|
# class is an EXACT match and NOT a regex!
|
||
|
class = kitty-bg
|
||
|
}
|
||
|
}
|
||
|
|
||
|
```
|
||
|
|
||
|
Launch `kitty -c "~/.config/hypr/kittyconfigbg.conf" --class="kitty-bg" "/home/vaxry/.config/hypr/cava.sh"`
|
||
|
|
||
|
Example script for cava:
|
||
|
|
||
|
```sh
|
||
|
#!/bin/sh
|
||
|
sleep 1 && cava
|
||
|
```
|
||
|
|
||
|
_sleep required because resizing happens a few ms after open, which breaks cava_
|