Skip to content

Commit

Permalink
feat: always print when already running
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Oct 18, 2024
1 parent e845b63 commit 669f0ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/single_instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down

0 comments on commit 669f0ca

Please sign in to comment.