add volume widget

This commit is contained in:
2025-12-10 03:19:48 +01:00
parent a01bb7554b
commit 12546a36f8
8 changed files with 250 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include <gtk4-layer-shell/gtk4-layer-shell.h>
#include <gtkmm.h>
#include <gtkmm/label.h>
class Spacer : public Gtk::Label
{
public:
Spacer()
{
set_hexpand(true);
set_text("|");
set_name("spacer");
}
};