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