mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-05 04:55:58 +01:00
add hyprctl notify
This commit is contained in:
parent
397d73723d
commit
49595af61e
1 changed files with 27 additions and 0 deletions
|
@ -197,6 +197,33 @@ hyprctl setprop address:0x13371337 forcenoanims 1 lock # with locking
|
||||||
hyprctl setprop address:0x13371337 nomaxsize 0 # without locking
|
hyprctl setprop address:0x13371337 nomaxsize 0 # without locking
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### notify
|
||||||
|
|
||||||
|
Sends a notification using the built-in Hyprland notification system.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
hyprctl notify [ICON] [TIME_MS] [COLOR] [MESSAGE]
|
||||||
|
```
|
||||||
|
|
||||||
|
For example:
|
||||||
|
```sh
|
||||||
|
hyprctl notify -1 10000 "rgb(ff1ea3)" "Hello everyone!"
|
||||||
|
```
|
||||||
|
|
||||||
|
Icon of `-1` means "No icon"
|
||||||
|
|
||||||
|
Color of `0` means "Default color for icon"
|
||||||
|
|
||||||
|
Icon list:
|
||||||
|
```
|
||||||
|
WARNING = 0
|
||||||
|
INFO = 1
|
||||||
|
HINT = 2
|
||||||
|
ERROR = 3
|
||||||
|
CONFUSED = 4
|
||||||
|
OK = 5
|
||||||
|
```
|
||||||
|
|
||||||
## Info
|
## Info
|
||||||
|
|
||||||
```plain
|
```plain
|
||||||
|
|
Loading…
Reference in a new issue