20 lines
297 B
Text
20 lines
297 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template $PipeTapUiFloatingWindow: Gtk.Window {
|
|
title: _("PipeTap");
|
|
default-width: 60;
|
|
default-height: 60;
|
|
|
|
styles [
|
|
"pt-transparent",
|
|
"osd",
|
|
]
|
|
|
|
Adw.Bin content_bin {
|
|
valign: fill;
|
|
halign: fill;
|
|
hexpand: true;
|
|
vexpand: true;
|
|
}
|
|
}
|