mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-10 02:59:37 +01:00
8 lines
316 B
Bash
8 lines
316 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# trigger a small, passive popup dialog to inform the user about darkman's activity
|
||
|
# reference https://wiki.archlinux.org/title/Desktop_notifications#Usage_in_programming
|
||
|
|
||
|
theme=$(darkman get)
|
||
|
notify-send --app-name="darkman" --urgency=low --icon=weather-clear-night "switching to $theme mode"
|