7 lines
121 B
Bash
7 lines
121 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Ensure Waybar icon offering the available update is removed
|
||
|
|
|
||
|
|
pkill -RTMIN+7 waybar
|
||
|
|
exit 0
|