diff options
| author | Josh <joshott16@gmail.com> | 2025-07-29 13:21:48 -0400 |
|---|---|---|
| committer | Josh <joshott16@gmail.com> | 2025-07-29 13:21:48 -0400 |
| commit | 4219d63336356fee619f58fc82ccbbbda0f65049 (patch) | |
| tree | 9bb83b7268c73cd22bbbd3144269dc97577bdd37 /rofi | |
| parent | 3e6b5bcd05e19f1043c614b7bbed3b07267b8534 (diff) | |
| download | dotfiles-4219d63336356fee619f58fc82ccbbbda0f65049.tar.gz dotfiles-4219d63336356fee619f58fc82ccbbbda0f65049.zip | |
rofi and dunst
Diffstat (limited to 'rofi')
| -rw-r--r-- | rofi/config.rasi | 21 | ||||
| -rw-r--r-- | rofi/theme.rasi | 105 |
2 files changed, 10 insertions, 116 deletions
diff --git a/rofi/config.rasi b/rofi/config.rasi index 80a7b9c..ba7ac15 100644 --- a/rofi/config.rasi +++ b/rofi/config.rasi @@ -1,17 +1,16 @@ configuration{ - modi: "run,drun"; + modes: "drun,window"; icon-theme: "Papirus"; show-icons: true; - terminal: "kitty"; - drun-display-format: "{icon} {name}"; - location: 0; - disable-history: false; - hide-scrollbar: true; - display-drun: " Apps "; - display-run: " Run "; - display-window: " Window "; - display-Network: " Network "; sidebar-mode: false; } -@theme "theme" +@import "colors" + +* { + font: "Lilex Nerd Font 14"; +} + +scrollbar { + handle-color: @accent; +} diff --git a/rofi/theme.rasi b/rofi/theme.rasi deleted file mode 100644 index d8ef494..0000000 --- a/rofi/theme.rasi +++ /dev/null @@ -1,105 +0,0 @@ -@theme "colors" - -* { - width: 600; - font: "Lilex Nerd Font 14"; -} - -element-text, element-icon , mode-switcher { - background-color: inherit; - text-color: inherit; -} - -window { - height: 360px; - border: 3px; - border-color: @border-col; - background-color: @bg-col; -} - -mainbox { - background-color: @bg-col; -} - -inputbar { - children: [prompt,entry]; - background-color: @bg-col; - border-radius: 5px; - padding: 2px; -} - -prompt { - background-color: @blue; - padding: 6px; - text-color: @bg-col; - border-radius: 3px; - margin: 20px 0px 0px 20px; -} - -textbox-prompt-colon { - expand: false; - str: ":"; -} - -entry { - padding: 6px; - margin: 20px 0px 0px 10px; - text-color: @fg-col; - background-color: @bg-col; -} - -listview { - border: 0px 0px 0px; - padding: 6px 0px 0px; - margin: 10px 0px 0px 20px; - columns: 2; - lines: 5; - background-color: @bg-col; -} - -element { - padding: 5px; - background-color: @bg-col; - text-color: @fg-col ; -} - -element-icon { - size: 25px; -} - -element selected { - background-color: @selected-col ; - text-color: @fg-col2 ; -} - -mode-switcher { - spacing: 0; - } - -button { - padding: 10px; - background-color: @bg-col-light; - text-color: @grey; - vertical-align: 0.5; - horizontal-align: 0.5; -} - -button selected { - background-color: @bg-col; - text-color: @blue; -} - -message { - background-color: @bg-col-light; - margin: 2px; - padding: 2px; - border-radius: 5px; -} - -textbox { - padding: 6px; - margin: 20px 0px 0px 20px; - text-color: @blue; - background-color: @bg-col-light; -} - |