diff options
author | Aaditya Dhruv <[email protected]> | 2023-08-27 00:48:12 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-08-27 00:48:12 -0500 |
commit | 598dc8dc0b06b13da8c4e2824dcff7d55a26fbf0 (patch) | |
tree | 8d1516fbbc46efea004548e5c2a348cd2e219409 /src/.config/polybar/scripts/rofi/powermenu.rasi | |
parent | de575ce30b06e140a53a59ed8343a6ed4e76a6e7 (diff) |
restructuring dotfiles to streamline ansible
Diffstat (limited to 'src/.config/polybar/scripts/rofi/powermenu.rasi')
-rw-r--r-- | src/.config/polybar/scripts/rofi/powermenu.rasi | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/src/.config/polybar/scripts/rofi/powermenu.rasi b/src/.config/polybar/scripts/rofi/powermenu.rasi new file mode 100644 index 0000000..4a63489 --- /dev/null +++ b/src/.config/polybar/scripts/rofi/powermenu.rasi @@ -0,0 +1,124 @@ +/* + * + * Author : Aditya Shakya + * Mail : [email protected] + * Github : @adi1090x + * Twitter : @adi1090x + * + */ + +configuration { + font: "Iosevka Nerd Font 12"; + show-icons: true; + icon-theme: "Papirus"; + display-drun: ""; + drun-display-format: "{name}"; + disable-history: false; + fullscreen: false; + hide-scrollbar: true; + sidebar-mode: false; +} + +@import "colors.rasi" + +window { + transparency: "real"; + background-color: @bg; + text-color: @fg; + border: 0px 0px 0px 0px; + border-color: @ac; + border-radius: 0px; + width: 350px; + location: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 0px 0px 0px 10px; + background-color: @bga; + text-color: @fg; +} + +textbox-prompt-colon { + padding: 0px; + background-color: @bga; + text-color: @ac; + expand: false; + str: ""; + font: "feather 12"; +} + +entry { + background-color: @al; + text-color: @fg; + placeholder-color: @fg; + expand: true; + horizontal-align: 0; + placeholder: "Search..."; + padding: 0px 0px 0px 5px; + blink: true; +} + +inputbar { + children: [ textbox-prompt-colon, prompt ]; + background-color: @bga; + text-color: @fg; + expand: false; + border: 0px 0px 1px 0px; + border-radius: 0px; + border-color: @re; + margin: 0px; + padding: 10px; +} + + +listview { + background-color: @al; + padding: 0px; + columns: 1; + lines: 5; + spacing: 5px; + cycle: true; + dynamic: true; + layout: vertical; +} + +mainbox { + background-color: @al; + border: 0px; + border-radius: 0px; + border-color: @ac; + children: [ inputbar, listview ]; + spacing: 5px; + padding: 5px; +} + +element { + background-color: @al; + text-color: @fg; + orientation: horizontal; + border-radius: 0px; + padding: 8px 8px 8px -20px; +} + +element-icon { + size: 24px; + border: 0px; +} +element-text { + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 0px 2.5px 0px 2.5px; + background-color: @bg; + color: @we; +} + +element selected { + text-color: @bg; + border: 2px 2px 2px 2px; + border-radius: 0px; + border-color: @aq; +} |