added ansible script

This commit is contained in:
liph
2026-02-16 23:40:30 +01:00
parent e6e444fff7
commit 8925d9677e
86 changed files with 15476 additions and 1911 deletions

View File

@@ -1 +0,0 @@
/home/liph/.config/wofi/themes/rose-pine-moon.css

View File

@@ -0,0 +1,62 @@
/* ============================================================
Wofi Theme — Gruvbox Material
Based on sainnhe/gruvbox-material (Dark Hard variant)
Structure mirrored from provided rose-pine template
============================================================ */
window {
margin: 0px;
background-color: #282828;
border-radius: 10px;
border: 2px solid #7daea3;
color: #d4be98;
font-family: "Monofur Nerd Font";
font-size: 20px;
}
#input {
margin: 5px;
border-radius: 10px;
border: none;
color: #d8a657;
background-color: #32302f;
}
#inner-box {
margin: 5px;
border: none;
background-color: #32302f;
color: #282828;
border-radius: 5px;
}
#outer-box {
margin: 15px;
border: none;
background-color: #282828;
}
#scroll {
margin: 0px;
border: none;
}
#text {
margin: 5px;
border: none;
color: #d4be98;
}
#entry:selected {
background-color: #7daea3;
color: #282828;
border-radius: 5px;
outline: none;
}
#entry:selected * {
background-color: #7daea3;
color: #282828;
border-radius: 5px;
outline: none;
}

View File

@@ -0,0 +1,62 @@
/* ============================================================
Wofi Theme — Gruvbox Material
Based on sainnhe/gruvbox-material (Dark Hard variant)
Structure mirrored from provided rose-pine template
============================================================ */
window {
margin: 0px;
background-color: #282828;
border-radius: 10px;
border: 2px solid #7daea3;
color: #d4be98;
font-family: "Monofur Nerd Font";
font-size: 20px;
}
#input {
margin: 5px;
border-radius: 10px;
border: none;
color: #d8a657;
background-color: #32302f;
}
#inner-box {
margin: 5px;
border: none;
background-color: #32302f;
color: #282828;
border-radius: 5px;
}
#outer-box {
margin: 15px;
border: none;
background-color: #282828;
}
#scroll {
margin: 0px;
border: none;
}
#text {
margin: 5px;
border: none;
color: #d4be98;
}
#entry:selected {
background-color: #7daea3;
color: #282828;
border-radius: 5px;
outline: none;
}
#entry:selected * {
background-color: #7daea3;
color: #282828;
border-radius: 5px;
outline: none;
}

View File

@@ -0,0 +1,125 @@
/* ============================================================
Wofi Theme — Kanagawa
Based on rebelot/kanagawa.nvim (Wave variant)
============================================================ */
* {
font-family: "JetBrains Mono", "Iosevka", monospace;
font-size: 13px;
transition:
background-color 0.1s ease,
color 0.1s ease;
}
/* ── Main window ── */
window {
background-color: #1f1f28;
border: 1px solid #2a2a37;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
}
/* ── Outer layout wrapper ── */
#outer-box {
background-color: transparent;
padding: 10px;
}
/* ── Search input wrapper ── */
#input {
background-color: #16161d;
color: #dcd7ba;
border: 1px solid #363646;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 8px;
caret-color: #e82424;
outline: none;
}
#input:focus {
border-color: #7e9cd8;
box-shadow: 0 0 0 2px rgba(126, 156, 216, 0.15);
}
#input image {
color: #54546d;
}
/* ── Scrollable results area ── */
#scroll {
background-color: transparent;
}
#inner-box {
background-color: transparent;
}
/* ── Individual entry row ── */
#entry {
background-color: transparent;
color: #dcd7ba;
border-radius: 5px;
padding: 7px 10px;
margin: 2px 0;
border: 1px solid transparent;
}
#entry:hover {
background-color: #2a2a37;
border-color: #363646;
}
#entry:selected,
#entry.selected {
background-color: #223249;
border-color: #7e9cd8;
color: #7e9cd8;
}
/* ── Entry image / icon ── */
#entry image {
margin-right: 8px;
color: #98bb6c;
}
#entry:selected image,
#entry.selected image {
color: #7e9cd8;
}
/* ── Entry text label ── */
#entry label {
color: inherit;
}
/* ── Kanagawa accent palette ── */
/* wave-red e82424 */
/* autumn-yel e6c384 */
/* spring-grn 98bb6c */
/* crystal-blu 7e9cd8 */
/* oni-violet 957fb8 */
/* dragon-org ffa066 */
/* spring-vio 938aa9 */
/* ── Scrollbar ── */
scrollbar {
width: 4px;
background: transparent;
}
scrollbar slider {
background-color: #363646;
border-radius: 2px;
min-height: 40px;
}
scrollbar slider:hover {
background-color: #7e9cd8;
}
/* ── No results message ── */
#no-results {
color: #54546d;
padding: 12px;
}

View File

@@ -0,0 +1,126 @@
/* ============================================================
Wofi Theme — Nightfox
Based on EdenEast/nightfox.nvim (Nightfox variant)
============================================================ */
* {
font-family: "JetBrains Mono", "Iosevka", monospace;
font-size: 13px;
transition:
background-color 0.1s ease,
color 0.1s ease;
}
/* ── Main window ── */
window {
background-color: #192330;
border: 1px solid #212e3f;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
/* ── Outer layout wrapper ── */
#outer-box {
background-color: transparent;
padding: 10px;
}
/* ── Search input ── */
#input {
background-color: #131a24;
color: #cdcecf;
border: 1px solid #29394f;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 8px;
caret-color: #c94f6d;
outline: none;
}
#input:focus {
border-color: #719cd6;
box-shadow: 0 0 0 2px rgba(113, 156, 214, 0.15);
}
#input image {
color: #3b4261;
}
/* ── Scrollable results area ── */
#scroll {
background-color: transparent;
}
#inner-box {
background-color: transparent;
}
/* ── Individual entry row ── */
#entry {
background-color: transparent;
color: #cdcecf;
border-radius: 5px;
padding: 7px 10px;
margin: 2px 0;
border: 1px solid transparent;
}
#entry:hover {
background-color: #212e3f;
border-color: #29394f;
}
#entry:selected,
#entry.selected {
background-color: #1d3347;
border-color: #719cd6;
color: #719cd6;
}
/* ── Entry image / icon ── */
#entry image {
margin-right: 8px;
color: #81b29a;
}
#entry:selected image,
#entry.selected image {
color: #719cd6;
}
/* ── Entry text label ── */
#entry label {
color: inherit;
}
/* ── Nightfox accent palette ── */
/* red c94f6d */
/* orange f4a261 */
/* yellow dbc074 */
/* green 81b29a */
/* cyan 63cdcf */
/* blue 719cd6 */
/* magenta 9d79d6 */
/* pink d67ad2 */
/* ── Scrollbar ── */
scrollbar {
width: 4px;
background: transparent;
}
scrollbar slider {
background-color: #29394f;
border-radius: 2px;
min-height: 40px;
}
scrollbar slider:hover {
background-color: #719cd6;
}
/* ── No results message ── */
#no-results {
color: #3b4261;
padding: 12px;
}

View File

@@ -0,0 +1,125 @@
/* ============================================================
Wofi Theme — One Dark
Based on Atom's One Dark (navarasu/onedark.nvim)
============================================================ */
* {
font-family: "JetBrains Mono", "Iosevka", monospace;
font-size: 13px;
transition:
background-color 0.1s ease,
color 0.1s ease;
}
/* ── Main window ── */
window {
background-color: #282c34;
border: 1px solid #3e4451;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
/* ── Outer layout wrapper ── */
#outer-box {
background-color: transparent;
padding: 10px;
}
/* ── Search input ── */
#input {
background-color: #21252b;
color: #abb2bf;
border: 1px solid #4b5263;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 8px;
caret-color: #e06c75;
outline: none;
}
#input:focus {
border-color: #61afef;
box-shadow: 0 0 0 2px rgba(97, 175, 239, 0.15);
}
#input image {
color: #5c6370;
}
/* ── Scrollable results area ── */
#scroll {
background-color: transparent;
}
#inner-box {
background-color: transparent;
}
/* ── Individual entry row ── */
#entry {
background-color: transparent;
color: #abb2bf;
border-radius: 5px;
padding: 7px 10px;
margin: 2px 0;
border: 1px solid transparent;
}
#entry:hover {
background-color: #2c313a;
border-color: #3e4451;
}
#entry:selected,
#entry.selected {
background-color: #2d3750;
border-color: #61afef;
color: #61afef;
}
/* ── Entry image / icon ── */
#entry image {
margin-right: 8px;
color: #98c379;
}
#entry:selected image,
#entry.selected image {
color: #61afef;
}
/* ── Entry text label ── */
#entry label {
color: inherit;
}
/* ── One Dark accent palette ── */
/* red e06c75 */
/* orange d19a66 */
/* yellow e5c07b */
/* green 98c379 */
/* cyan 56b6c2 */
/* blue 61afef */
/* magenta c678dd */
/* ── Scrollbar ── */
scrollbar {
width: 4px;
background: transparent;
}
scrollbar slider {
background-color: #4b5263;
border-radius: 2px;
min-height: 40px;
}
scrollbar slider:hover {
background-color: #61afef;
}
/* ── No results message ── */
#no-results {
color: #5c6370;
padding: 12px;
}

View File

@@ -0,0 +1,125 @@
/* ============================================================
Wofi Theme — Sonokai
Based on Sainnhe's Sonokai (Shusia variant)
============================================================ */
* {
font-family: "JetBrains Mono", "Iosevka", monospace;
font-size: 13px;
transition:
background-color 0.1s ease,
color 0.1s ease;
}
/* ── Main window ── */
window {
background-color: #2d2a2e;
border: 1px solid #403e41;
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
/* ── Outer layout wrapper ── */
#outer-box {
background-color: transparent;
padding: 10px;
}
/* ── Search input wrapper ── */
#input {
background-color: #221f22;
color: #e3e1e4;
border: 1px solid #5b595c;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 8px;
caret-color: #ff6188;
outline: none;
}
#input:focus {
border-color: #ff6188;
box-shadow: 0 0 0 2px rgba(255, 97, 136, 0.15);
}
#input image {
/* search icon */
color: #727072;
}
/* ── Scrollable results area ── */
#scroll {
background-color: transparent;
}
#inner-box {
background-color: transparent;
}
/* ── Individual entry row ── */
#entry {
background-color: transparent;
color: #e3e1e4;
border-radius: 5px;
padding: 7px 10px;
margin: 2px 0;
border: 1px solid transparent;
}
#entry:hover {
background-color: #3a3a3c;
border-color: #5b595c;
}
#entry:selected,
#entry.selected {
background-color: #403e41;
border-color: #ff6188;
color: #ff6188;
}
/* ── Entry image / icon ── */
#entry image {
margin-right: 8px;
color: #a9dc76;
}
#entry:selected image,
#entry.selected image {
color: #ff6188;
}
/* ── Entry text label ── */
#entry label {
color: inherit;
}
/* ── Custom property colours (usable in sub-text) ── */
/* accent-1 ff6188 pink */
/* accent-2 fc9867 orange */
/* accent-3 ffd866 yellow */
/* accent-4 a9dc76 green */
/* accent-5 78dce8 cyan */
/* accent-6 ab9df2 purple */
/* ── Scrollbar ── */
scrollbar {
width: 4px;
background: transparent;
}
scrollbar slider {
background-color: #5b595c;
border-radius: 2px;
min-height: 40px;
}
scrollbar slider:hover {
background-color: #ff6188;
}
/* ── No results message ── */
#no-results {
color: #727072;
padding: 12px;
}

View File

@@ -0,0 +1,30 @@
window {
background-color: rgb(26, 27, 38);
border-radius: 0.5em;
}
#input {
padding: 0.7em;
border-radius: 0.5em 0.5em 0 0;
background-color: #2d2e40;
color: #c0caf5;
border: none;
}
#text {
color: #c0caf5;
}
#entry {
padding: 0.7em;
color: #c0caf5;
}
#entry:selected {
background-color: #7aa2f7;
}
#text:selected {
color: #eee;
font-weight: bold;
}