Skip to content

Commit

Permalink
chore: run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Oct 18, 2024
1 parent 3a51a13 commit 1a1679c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ui/single_instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down

0 comments on commit 1a1679c

Please sign in to comment.