Build the Panama Hyprland desktop

This commit is contained in:
Gabriel Brown
2026-08-17 10:32:55 -04:00
parent 67033f2a31
commit 5248883e4b
190 changed files with 18554 additions and 34 deletions
+21
View File
@@ -0,0 +1,21 @@
# wofi — emergency fallback launcher only.
#
# Vicinae is the real launcher (SUPER+A / SUPER+R / SUPER+SPACE). This exists
# because vicinae runs as a systemd user service and Quickshell owns the bar:
# if either fails to start, you would otherwise have no way to launch an
# application without dropping to a TTY. Bound to SUPER+SHIFT+R.
#
# Keep it boring and dependency-free. It is insurance, not a daily driver.
show=drun
prompt=Run
width=640
height=420
lines=10
location=center
allow_images=true
image_size=32
insensitive=true
no_actions=true
gtk_dark=true
term=kitty
+67
View File
@@ -0,0 +1,67 @@
/* Tokyo Night Moon — matches quickshell/config/Theme.qml.
* Fallback launcher; see ./config for why this exists at all. */
* {
font-family: "Adwaita Sans", sans-serif;
font-size: 14px;
}
window {
background-color: rgba(30, 32, 48, 0.96); /* bg_dark */
border: 1px solid #444a73; /* terminal_black */
border-radius: 18px;
}
#input {
margin: 12px;
padding: 10px 14px;
border: 1px solid #3b4261; /* fg_gutter */
border-radius: 12px;
background-color: #222436; /* bg */
color: #c8d3f5; /* fg */
}
#input:focus {
border-color: #82aaff; /* accent */
}
#outer-box {
margin: 0;
padding: 0 8px 12px 8px;
}
#scroll {
margin: 0;
}
#inner-box {
margin: 0;
}
#entry {
padding: 8px 10px;
border-radius: 12px;
color: #c8d3f5;
}
#entry:selected {
background-color: #2f334d; /* bg_highlight */
outline: none;
}
#entry image {
margin-right: 10px;
}
#text {
color: #c8d3f5;
}
#entry:selected #text {
color: #ffffff;
}
/* wofi renders no match text here; keep it muted rather than alarming. */
#unselected {
color: #828bb8; /* fg_dark */
}