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/rofidmenu.rasi
parenta6d2e5e6fb9adc84c32e86630b4846b1765c7d77 (diff)
downloaddotfiles-d2d735742ca61b211c9b48a2209d36395daebcf4.tar.gz
+ add existing config
Diffstat (limited to 'dot_config/rofi/rofidmenu.rasi')
-rw-r--r--dot_config/rofi/rofidmenu.rasi135
1 files changed, 135 insertions, 0 deletions
diff --git a/dot_config/rofi/rofidmenu.rasi b/dot_config/rofi/rofidmenu.rasi
new file mode 100644
index 0000000..675255f
--- /dev/null
+++ b/dot_config/rofi/rofidmenu.rasi
@@ -0,0 +1,135 @@
1/*******************************************************
2 * ROFI configs i3 Apps menu for EndeavourOS
3 * Maintainer: joekamprad <[email protected]>
4 *******************************************************/
5configuration {
6 font: "Noto Sans Regular 16";
7 show-icons: true;
8 icon-theme: "Qogir";
9 display-drun: "Apps";
10 drun-display-format: "{name}";
11 scroll-method: 0;
12 disable-history: false;
13 sidebar-mode: false;
14}
15
16@import "~/.config/rofi/arc_dark_transparent_colors.rasi"
17
18window {
19 background-color: @background;
20 border: 0;
21 padding: 30;
22}
23listview {
24 lines: 10;
25 columns: 3;
26}
27mainbox {
28 border: 0;
29 padding: 0;
30}
31message {
32 border: 2px 0px 0px;
33 border-color: @separatorcolor;
34 padding: 1px;
35}
36textbox {
37 text-color: @foreground;
38}
39listview {
40 fixed-height: 0;
41 border: 8px 0px 0px;
42 border-color: @separatorcolor;
43 spacing: 8px;
44 scrollbar: false;
45 padding: 2px 0px 0px;
46}
47element {
48 border: 0;
49 padding: 1px;
50}
51element-text {
52 background-color: inherit;
53 text-color: inherit;
54}
55element.normal.normal {
56 background-color: @normal-background;
57 text-color: @normal-foreground;
58}
59element.normal.urgent {
60 background-color: @urgent-background;
61 text-color: @urgent-foreground;
62}
63element.normal.active {
64 background-color: @active-background;
65 text-color: @active-foreground;
66}
67element.selected.normal {
68 background-color: @selected-normal-background;
69 text-color: @selected-normal-foreground;
70}
71element.selected.urgent {
72 background-color: @selected-urgent-background;
73 text-color: @selected-urgent-foreground;
74}
75element.selected.active {
76 background-color: @selected-active-background;
77 text-color: @selected-active-foreground;
78}
79element.alternate.normal {
80 background-color: @alternate-normal-background;
81 text-color: @alternate-normal-foreground;
82}
83element.alternate.urgent {
84 background-color: @alternate-urgent-background;
85 text-color: @alternate-urgent-foreground;
86}
87element.alternate.active {
88 background-color: @alternate-active-background;
89 text-color: @alternate-active-foreground;
90}
91scrollbar {
92 width: 4px;
93 border: 0;
94 handle-color: @normal-foreground;
95 handle-width: 8px;
96 padding: 0;
97}
98mode-switcher {
99 border: 2px 0px 0px;
100 border-color: @separatorcolor;
101}
102button {
103 spacing: 0;
104 text-color: @normal-foreground;
105}
106button.selected {
107 background-color: @selected-normal-background;
108 text-color: @selected-normal-foreground;
109}
110inputbar {
111 spacing: 0;
112 text-color: @normal-foreground;
113 padding: 1px;
114}
115case-indicator {
116 spacing: 0;
117 text-color: @normal-foreground;
118}
119entry {
120 spacing: 0;
121 text-color: @normal-foreground;
122}
123prompt {
124 spacing: 0;
125 text-color: @normal-foreground;
126}
127inputbar {
128 children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
129}
130textbox-prompt-colon {
131 expand: false;
132 str: ":";
133 margin: 0px 0.3em 0em 0em;
134 text-color: @normal-foreground;
135}
Powered by cgit v1.2.3 (git 2.41.0)