From 1a1679caef695a8880f9834246b7b839c0aca6dc Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 17 Oct 2024 20:11:12 -0400 Subject: [PATCH] chore: run cargo fmt --- src/ui/single_instance.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui/single_instance.rs b/src/ui/single_instance.rs index 08d8ee2..31a8b42 100644 --- a/src/ui/single_instance.rs +++ b/src/ui/single_instance.rs @@ -7,7 +7,9 @@ pub fn single_instance() { // Don't allow more than one hyprdim instance to run if !instance.is_single() { - println!("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); };