aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-11-17 10:56:25 -0800
committerclarkzjw <[email protected]>2022-11-17 10:56:25 -0800
commitd2d735742ca61b211c9b48a2209d36395daebcf4 (patch)
treebda27729a1bbac3ab354a1f10d4885899cdbf967 /dot_config/rofi/power-profiles.rasi
parenta6d2e5e6fb9adc84c32e86630b4846b1765c7d77 (diff)
downloaddotfiles-d2d735742ca61b211c9b48a2209d36395daebcf4.tar.gz
+ add existing config
Diffstat (limited to 'dot_config/rofi/power-profiles.rasi')
-rw-r--r--dot_config/rofi/power-profiles.rasi121
1 files changed, 121 insertions, 0 deletions
diff --git a/dot_config/rofi/power-profiles.rasi b/dot_config/rofi/power-profiles.rasi
new file mode 100644
index 0000000..f81cf72
--- /dev/null
+++ b/dot_config/rofi/power-profiles.rasi
@@ -0,0 +1,121 @@
1/*******************************************************
2 * ROFI configs i3 powermenu for EndeavourOS
3 * Maintainer: joekamprad <[email protected]>
4 *******************************************************/
5configuration {
6 font: "Noto Sans Regular 10";
7 show-icons: false;
8 icon-theme: "Qogir";
9 scroll-method: 0;
10 disable-history: false;
11 fullscreen: false;
12 hide-scrollbar: true;
13 sidebar-mode: false;
14}
15
16@import "~/.config/rofi/arc_dark_colors.rasi"
17
18
19window {
20 background-color: @background;
21 border: 0;
22 padding: 10;
23 transparency: "real";
24 width: 170px;
25 location: east;
26 /*y-offset: 18;*/
27 /*x-offset: 850;*/
28}
29listview {
30 lines: 4;
31 columns: 1;
32}
33element {
34 border: 0;
35 padding: 1px;
36}
37element-text {
38 background-color: inherit;
39 text-color: inherit;
40}
41element.normal.normal {
42 background-color: @normal-background;
43 text-color: @normal-foreground;
44}
45element.normal.urgent {
46 background-color: @urgent-background;
47 text-color: @urgent-foreground;
48}
49element.normal.active {
50 background-color: @active-background;
51 text-color: @active-foreground;
52}
53element.selected.normal {
54 background-color: @selected-normal-background;
55 text-color: @selected-normal-foreground;
56}
57element.selected.urgent {
58 background-color: @selected-urgent-background;
59 text-color: @selected-urgent-foreground;
60}
61element.selected.active {
62 background-color: @selected-active-background;
63 text-color: @selected-active-foreground;
64}
65element.alternate.normal {
66 background-color: @alternate-normal-background;
67 text-color: @alternate-normal-foreground;
68}
69element.alternate.urgent {
70 background-color: @alternate-urgent-background;
71 text-color: @alternate-urgent-foreground;
72}
73element.alternate.active {
74 background-color: @alternate-active-background;
75 text-color: @alternate-active-foreground;
76}
77scrollbar {
78 width: 4px;
79 border: 0;
80 handle-color: @normal-foreground;
81 handle-width: 8px;
82 padding: 0;
83}
84mode-switcher {
85 border: 2px 0px 0px;
86 border-color: @separatorcolor;
87}
88button {
89 spacing: 0;
90 text-color: @normal-foreground;
91}
92button.selected {
93 background-color: @selected-normal-background;
94 text-color: @selected-normal-foreground;
95}
96inputbar {
97 spacing: 0;
98 text-color: @normal-foreground;
99 padding: 1px;
100}
101case-indicator {
102 spacing: 0;
103 text-color: @normal-foreground;
104}
105entry {
106 spacing: 0;
107 text-color: @normal-foreground;
108}
109prompt {
110 spacing: 0;
111 text-color: @normal-foreground;
112}
113inputbar {
114 children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
115}
116textbox-prompt-colon {
117 expand: false;
118 str: "Set Power Profile:";
119 margin: 0px 0.3em 0em 0em;
120 text-color: @normal-foreground;
121}
Powered by cgit v1.2.3 (git 2.41.0)