From 6c27467c4570c0113cf11b4fc895595f65c47ef3 Mon Sep 17 00:00:00 2001 From: Harsh Sharma Date: Sun, 31 Mar 2024 03:06:00 +0530 Subject: [PATCH] fix: remove test notification at startup --- internal/hypripc.go | 8 -------- internal/project.go | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/internal/hypripc.go b/internal/hypripc.go index db405d5..76ab0a9 100644 --- a/internal/hypripc.go +++ b/internal/hypripc.go @@ -121,12 +121,4 @@ func GetHyprSocket(hypr *HyprConn) { attachIconsStruct(hypr) attachColorsStruct(hypr) hypr.DEFAULT_FONT_SIZE = "13" - - hyprsock.Notify( - hyprsock.icon.INFO, - 10000, - hyprsock.color.GREEN, - "Test", - hyprsock.DEFAULT_FONT_SIZE, - ) } diff --git a/internal/project.go b/internal/project.go index 0ee92b5..e0e27a2 100644 --- a/internal/project.go +++ b/internal/project.go @@ -1,7 +1,7 @@ package internal const ( - VERSION = "0.2.0" + VERSION = "0.2.1" PACKAGE = "hyprnotify" AUTHOR = "codelif" )