From 669f0cabe2f8c2e3ab5808e283ded16745deda83 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 17 Oct 2024 20:05:25 -0400 Subject: [PATCH] feat: always print when already running --- src/ui/single_instance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/single_instance.rs b/src/ui/single_instance.rs index 6f6617f..08d8ee2 100644 --- a/src/ui/single_instance.rs +++ b/src/ui/single_instance.rs @@ -7,7 +7,7 @@ pub fn single_instance() { // Don't allow more than one hyprdim instance to run if !instance.is_single() { - log("hyprdim is already running. Use `killall hyprdim` to stop any existing processes."); + println!("hyprdim is already running. Use `killall hyprdim` to stop any existing processes."); process::exit(1); };