diff --git a/home/.local/bin/scripts/gui/gh-notification b/home/.local/bin/scripts/gui/gh-notification index fd74ba4..0702223 100755 --- a/home/.local/bin/scripts/gui/gh-notification +++ b/home/.local/bin/scripts/gui/gh-notification @@ -178,9 +178,9 @@ send_notify() { if [ $NO_DISPLAY -eq 1 ]; then XDG_RUNTIME_DIR="/run/user/$(id -u)" \ DISPLAY=:0 \ - notify-send --app-name=github-notification --urgency="$URGENCY" "$1" "$2" + notify-send -i "$HOME/.local/share/icons/hicolor/64x64/apps/github-notification.png" --app-name=github-notification --urgency="$URGENCY" "$1" "$2" else - notify-send --app-name=github-notification --urgency="$URGENCY" "$1" "$2" + notify-send -i "$HOME/.local/share/icons/hicolor/64x64/apps/github-notification.png" --app-name=github-notification --urgency="$URGENCY" "$1" "$2" fi } diff --git a/home/.local/share/icons/hicolor/64x64/github-notification.png b/home/.local/share/icons/hicolor/64x64/github-notification.png new file mode 100644 index 0000000..a0a1170 Binary files /dev/null and b/home/.local/share/icons/hicolor/64x64/github-notification.png differ