diff --git a/TODO b/TODO index 5372b5a..3740142 100644 --- a/TODO +++ b/TODO @@ -17,7 +17,6 @@ Functionality: * Send media messages (images / videos) Other stuff: - * Create an icon for the app * Set the app name correctly to show in the shell topbar * Make sidebars hideables diff --git a/res/icon.svg b/res/icon.svg new file mode 100644 index 0000000..576c50c --- /dev/null +++ b/res/icon.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/src/app.rs b/src/app.rs index 2c17635..4ed39f2 100644 --- a/src/app.rs +++ b/src/app.rs @@ -562,6 +562,7 @@ impl App { .expect("Couldn't find main_window in ui file."); window.set_title("Guillotine"); + window.set_icon_from_file("res/icon.svg"); window.show_all(); let op = self.op.clone();