aboutsummaryrefslogtreecommitdiffstats
path: root/rofi
diff options
context:
space:
mode:
Diffstat (limited to 'rofi')
-rw-r--r--rofi/udt/powermenu.rasi11
1 files changed, 10 insertions, 1 deletions
diff --git a/rofi/udt/powermenu.rasi b/rofi/udt/powermenu.rasi
index a178865..d2c885a 100644
--- a/rofi/udt/powermenu.rasi
+++ b/rofi/udt/powermenu.rasi
@@ -10,9 +10,13 @@
@import "common.rasi"
+/* The fullscreen ground is translucent so the desktop stays faintly visible
+ * behind it, which keeps the overlay reading as a layer over the session
+ * rather than a screen the session was replaced by. Written as an explicit
+ * rgba rather than @base, since the palette entries are fully opaque. */
window {
fullscreen: true;
- background-color: @base;
+ background-color: rgba(36, 39, 58, 0.88);
border: 0;
border-radius: 0;
padding: 0;
@@ -90,6 +94,11 @@ element {
/* The entries are single glyphs from a Nerd Font, so they are sized large and
* centered rather than laid out as text. */
+/* Left as the plain Nerd Font, which renders all four glyphs correctly here.
+ * Naming `feather` first, as confirm.rasi has to, blanks the selected cell:
+ * feather covers three of the four codepoints but not the sleep glyph
+ * (U+F0904), and heading the stack with it breaks the row rather than fixing
+ * it. Verified by screenshot, both ways. */
element-text {
font: "Inconsolata Nerd Font Mono 42";
horizontal-align: 0.5;