diff options
| author | silly <u65487754@gmail.com> | 2026-03-16 10:04:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-16 10:04:26 +0100 |
| commit | bae467130873a081443e8ddc6b650811addb9dc8 (patch) | |
| tree | 152788306cbc80588bedc4b3d8bb0e91ff9ca371 /.config/rofi | |
| parent | cc378a4b709edc53e6834be5f00ffde84760f57b (diff) | |
Create wallpaper.rasi
Diffstat (limited to '.config/rofi')
| -rw-r--r-- | .config/rofi/wallpaper.rasi | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/.config/rofi/wallpaper.rasi b/.config/rofi/wallpaper.rasi new file mode 100644 index 0000000..1d4066f --- /dev/null +++ b/.config/rofi/wallpaper.rasi @@ -0,0 +1,94 @@ +configuration { + font: "JetBrainsMono Nerd Font 12"; + show-icons: true; + hover-select: true; + me-select-entry: ""; + me-accept-entry: "MousePrimary"; +} + +* { + background-color: #1F1F1F; + text-color: #FFFFFF; + border-color: #FFFFFF; +} + +window { + anchor: east; + location: east; + width: 320px; + height: 70%; + x-offset: -15px; + y-offset: 0px; + background-color: #1F1F1F; + border: 1px; + border-radius: 0px; + border-color: #FFFFFF; +} + +mainbox { + background-color: transparent; + spacing: 0px; + padding: 5px; + children: [ "inputbar", "listview" ]; +} + +inputbar { + background-color: transparent; + text-color: #FFFFFF; + padding: 4px 0px; + spacing: 0; + children: [ "prompt", "entry" ]; +} + +prompt { + background-color: transparent; + text-color: #FFFFFF; + padding: 0px 4px 0px 0px; + content: ">"; +} + +entry { + background-color: transparent; + text-color: #FFFFFF; + placeholder: ""; + cursor: default; +} + +listview { + background-color: transparent; + columns: 1; + lines: 5; + spacing: 2px; + cycle: true; + fixed-height: false; + scrollbar: false; + border: 0; +} + +element { + orientation: vertical; + background-color: transparent; + padding: 0px; + border-radius: 0px; + cursor: default; +} + +element selected { + background-color: transparent; + border: 2px; + border-color: #FFFFFF; +} + +element-icon { + background-color: transparent; + size: 170px; + horizontal-align: 0.5; + cursor: default; +} + +element-text { + enabled: false; + width: 0px; + padding: 0px; + margin: 0px; +} |
