diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-08-30 19:22:59 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-08-30 19:22:59 +0200 |
| commit | 19120d4f9761c67d99ed1ce3da6084b83f5a49c9 (patch) | |
| tree | f234cad1bdad88114a63c9702144da487024967a /linux/home/.config/rofi/rofi-network-manager.rasi | |
| parent | 5928998af5404ae2be84c6cecc10ebf84bd3f3ed (diff) | |
| download | dotfiles-19120d4f9761c67d99ed1ce3da6084b83f5a49c9.tar.gz dotfiles-19120d4f9761c67d99ed1ce3da6084b83f5a49c9.zip | |
Linux-specific dotfiles
Diffstat (limited to 'linux/home/.config/rofi/rofi-network-manager.rasi')
| -rw-r--r-- | linux/home/.config/rofi/rofi-network-manager.rasi | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/linux/home/.config/rofi/rofi-network-manager.rasi b/linux/home/.config/rofi/rofi-network-manager.rasi new file mode 100644 index 0000000..7e2da9b --- /dev/null +++ b/linux/home/.config/rofi/rofi-network-manager.rasi @@ -0,0 +1,127 @@ +configuration { + show-icons: false; + sidebar-mode: false; + hover-select: true; + me-select-entry: ""; + me-accept-entry: [MousePrimary]; +} +*{ + font: "DejaVu Sans Mono 9"; //Font + //Colors + foreground:#f8f8f2; //Text + background:#0A1229; //Background + accent:#00BCD4; //Highlight + foreground-selection:@foreground; //Selection_fg + background-selection:#e34039; //Selection_bg + + transparent: #ffffff00; + background-color: @transparent; + text-color: @foreground; + selected-normal-foreground: @foreground-selection; + normal-foreground: @foreground; + alternate-normal-background: @transparent; + selected-urgent-foreground: @foreground; + urgent-foreground: @foreground; + alternate-urgent-background: @background; + active-foreground: @accent; + selected-active-foreground: @background-selection; + alternate-normal-foreground: @foreground; + alternate-active-background: @background; + bordercolor: @background; + normal-background: @transparent; + selected-normal-background: @background-selection; + separatorcolor: @accent; + urgent-background: @accent; + alternate-urgent-foreground: @foreground; + selected-urgent-background: @accent; + alternate-active-foreground: @foreground; + selected-active-background: @transparent; + active-background: @transparent; +} +window { + text-color: @foreground; + background-color: @background; + border-radius: 6px; + padding: 10; +} +mainbox { + border: 0; + padding: 0; +} +textbox { + text-color: @foreground; +} +listview { + spacing: 4px; + dynamic: true; + fixed-height: false; + border: 0; + scrollbar: false; + text-color: @separatorcolor; +} +element { + border: 0; + padding: 0; + border-radius: 4px; +} +element-text { + background-color: inherit; + text-color: inherit; +} +element.normal.normal { + text-color: @normal-foreground; + background-color: @normal-background; +} +element.normal.urgent { + text-color: @urgent-foreground; + background-color: @urgent-background; +} +element.normal.active { + text-color: @active-foreground; + background-color: @active-background; +} +element.selected.normal { + text-color: @selected-normal-foreground; + background-color: @selected-normal-background; +} +element.selected.urgent { + text-color: @selected-urgent-foreground; + background-color: @selected-urgent-background; +} +element.selected.active { + text-color: @selected-active-foreground; + background-color: @selected-active-background; +} +element.alternate.normal { + text-color: @alternate-normal-foreground; + background-color: @alternate-normal-background; +} +element.alternate.urgent { + text-color: @alternate-urgent-foreground; + background-color: @alternate-urgent-background; +} +element.alternate.active { + text-color: @alternate-active-foreground; + background-color: @alternate-active-background; +} +mode-switcher { + border: 0; +} +button selected { + text-color: @selected-normal-foreground; + background-color: @selected-normal-background; +} +button normal { + text-color: @foreground; +} +inputbar { + children: [textbox-prompt-colon,entry]; +} +textbox-prompt-colon{ + expand: false; + margin: 0; + str: ":"; +} +entry { + placeholder: ""; +} |
