aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-11-19 14:04:50 +0200
committersrdusr <trevorgray@srdusr.com>2023-11-19 14:04:50 +0200
commit708d7dda5a76ae0d3340ec063a4a2c73a829fb47 (patch)
treefadcf5ba5244822e4cfd5d72623b349bbabc690b
parent507fb1b8b28192b54d5e50259c0009f335173354 (diff)
downloaddotfiles-708d7dda5a76ae0d3340ec063a4a2c73a829fb47.tar.gz
dotfiles-708d7dda5a76ae0d3340ec063a4a2c73a829fb47.zip
Clean config
-rw-r--r--.config/rofi/styles/powermenu.rasi203
1 files changed, 175 insertions, 28 deletions
diff --git a/.config/rofi/styles/powermenu.rasi b/.config/rofi/styles/powermenu.rasi
index 0602482..1b7219d 100644
--- a/.config/rofi/styles/powermenu.rasi
+++ b/.config/rofi/styles/powermenu.rasi
@@ -1,40 +1,187 @@
-@import "../colors/simple.rasi"
+configuration {
+ bw: 0;
+ columns: 1;
+ location: 0;
+ lines: 5;
+ padding: 0;
+ fixed-num-lines: true;
+ show-icons: true;
+ sidebar-mode: false;
+ separator-style: "beam";
+ hide-scrollbar: false;
+ scroll-method: 0;
+ click-to-exit: true;
+ show-match: true;
+ combi-hide-mode-prefix: false;
+ display-combi: "Combi";
+ display-drun: "Start";
+ display-window: "Window";
+ display-windowcd: "Windowcd";
+ display-run: "Commands";
+ display-ssh: "Ssh";
+ modi: "drun,window,run,ssh,";
+ opacity: "0";
+ fake-transparency: false;
+ kb-row-up: "Up,Control+k,Shift+Tab,Shift+ISO_Left_Tab";
+ kb-row-down: "Down,Control+j";
+ kb-accept-entry: "Control+m,Return,KP_Enter";
+ me-select-entry: "";
+ me-accept-entry: "MousePrimary";
+ terminal: "kitty";
+ kb-remove-to-eol: "Control+Shift+e";
+ kb-mode-next: "Shift+Right,Control+Tab,Control+l";
+ kb-mode-previous: "Shift+Left,Control+Shift+Tab,Control+h";
+ kb-remove-char-back: "BackSpace";
+ kb-mode-complete: "Control+c";
+}
+
+* {
+ lines: 5;
+ padding: 0;
+ hide-scrollbar: true;
+ border: 0;
+ width: 15%;
+ columns: 1;
+ background-color: @background;
+ font: "Source Code Pro Semibold 9";
+ spacing: 2;
+}
+
+#window {
+ background-color: @background;
+ border: 3;
+ border-color: @cyber;
+ padding: 0.5ch;
+ location: northeast;
+ margin: 28px 8px 0 0; /* Adjust these values for spacing and positioning */
+}
+
+#mainbox {
+ border: 0;
+ border-color: @ac;
+ padding: 0;
+}
+
+#message {
+ border: 0px 0px 0px;
+ border-color: @ac;
+ padding: 1px;
+}
+
+#textbox {
+ text-color: @foreground;
+}
+
+#inputbar {
+ children: [ prompt, textbox-prompt-colon, entry, case-indicator ];
+}
+
+#textbox-prompt-colon {
+ expand: false;
+ str: ":";
+ margin: 0px 0.3em 0em 0em;
+ text-color: inherit;
+}
+
+#listview {
+ fixed-height: 0;
+ border: 0px 0px 0px;
+ border-color: @ac;
+ spacing: 2px;
+ scrollbar: true;
+ padding: 2px 0px 0px;
+}
+
+#element {
+ border: 0;
+ padding: 1px;
+}
+
+#element.normal.normal {
+ background-color: @background;
+ text-color: @foreground;
+}
-inputbar {
- children: [ textbox-prompt-colon, prompt ];
- position: center;
- border-radius: 0px;
+#element.normal.urgent {
+ background-color: @background;
+ text-color: @red;
}
-textbox-prompt-colon {
- padding: 0% 0% 0% 2%;
- str: " Syetem Uptime";
- background-color: @al;
- text-color: @fg;
+#element.normal.active {
+ background-color: @foreground;
+ text-color: @background;
}
-prompt {
- font: "Inter Bold 12";
- padding: 0% 4% 0% 2%;
- enabled: true;
- background-color: @al;
- text-color: @fg;
+#element.selected.normal {
+ background-color: @foreground;
+ text-color: @black;
}
-listview {
- cycle: true;
- lines: 5;
- margin: 0 0 0 0;
- scrollbar: false;
- background-color: @al;
+#element.selected.urgent {
+ background-color: @foreground;
+ text-color: @black;
}
-element selected {
- background-color: @ac;
- text-color: @fg;
- border-radius: 5px;
+#element.selected.active {
+ background-color: @foreground;
+ text-color: @black;
}
-element{
- padding: 12px;
+#element.alternate.normal {
+ background-color: @background;
+ text-color: @foreground;
}
+
+#element.alternate.urgent {
+ background-color: @background;
+ text-color: @foreground;
+}
+
+#element.alternate.active {
+ background-color: @background;
+ text-color: @foreground;
+}
+
+#scrollbar {
+ width: 0px;
+ border: 0;
+ handle-width: 0px;
+ padding: 0;
+}
+
+#sidebar {
+ border: 2px 0px 0px;
+ border-color: @ac;
+}
+
+#button {
+ text-color: @background;
+}
+
+#button.selected {
+ background-color: @ac;
+ text-color: @foreground;
+}
+
+#inputbar {
+ spacing: 0;
+ text-color: @foreground;
+ padding: 1px;
+}
+
+#case-indicator {
+ spacing: 0;
+ text-color: @foreground;
+}
+
+#entry {
+ spacing: 0;
+ text-color: @foreground;
+}
+
+#prompt {
+ spacing: 0;
+ text-color: @foreground;
+}
+
+@import "~/.config/rofi/themes/colors.rasi"