Skip to content

Commit

Permalink
fix: application_id naming (#34)
Browse files Browse the repository at this point in the history
* main.rs: adjust application_id

This fixes 'icon not shown' in applications that rely on proper
application_id naming (e.g. nwg-dock-hyprland)

Signed-off-by: Markus Volk <[email protected]>

* fix the formatting

---------

Signed-off-by: Markus Volk <[email protected]>
Co-authored-by: Adam Perkowski <[email protected]>
  • Loading branch information
MarkusVolk and adamperkowski authored Oct 28, 2024
1 parent 0155319 commit 8bf9cda
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@ along with this program; if not, see
return;
}

let app = Application::builder()
.application_id("nnyyxxxx.hyprwall")
.build();
let app = Application::builder().application_id("hyprwall").build();

app.connect_activate(gui::build_ui);
app.run();
Expand Down

0 comments on commit 8bf9cda

Please sign in to comment.