diff options
Diffstat (limited to 'dot_config/rofi')
-rw-r--r-- | dot_config/rofi/monitor.rasi | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/dot_config/rofi/monitor.rasi b/dot_config/rofi/monitor.rasi new file mode 100644 index 0000000..08d3f4e --- /dev/null +++ b/dot_config/rofi/monitor.rasi | |||
@@ -0,0 +1,112 @@ | |||
1 | configuration { | ||
2 | font: "Noto Sans Regular 20"; | ||
3 | show-icons: false; | ||
4 | icon-theme: "Qogir"; | ||
5 | scroll-method: 0; | ||
6 | disable-history: false; | ||
7 | sidebar-mode: false; | ||
8 | } | ||
9 | |||
10 | @import "~/.config/rofi/arc_dark_transparent_colors.rasi" | ||
11 | |||
12 | window { | ||
13 | background-color: @background; | ||
14 | border: 0; | ||
15 | padding: 10; | ||
16 | transparency: "real"; | ||
17 | width: 200px; | ||
18 | location: center; | ||
19 | /*y-offset: 18;*/ | ||
20 | /*x-offset: 850;*/ | ||
21 | } | ||
22 | listview { | ||
23 | lines: 3; | ||
24 | columns: 1; | ||
25 | scrollbar: false; | ||
26 | } | ||
27 | element { | ||
28 | border: 0; | ||
29 | padding: 1px; | ||
30 | } | ||
31 | element-text { | ||
32 | background-color: inherit; | ||
33 | text-color: inherit; | ||
34 | } | ||
35 | element.normal.normal { | ||
36 | background-color: @normal-background; | ||
37 | text-color: @normal-foreground; | ||
38 | } | ||
39 | element.normal.urgent { | ||
40 | background-color: @urgent-background; | ||
41 | text-color: @urgent-foreground; | ||
42 | } | ||
43 | element.normal.active { | ||
44 | background-color: @active-background; | ||
45 | text-color: @active-foreground; | ||
46 | } | ||
47 | element.selected.normal { | ||
48 | background-color: @selected-normal-background; | ||
49 | text-color: @selected-normal-foreground; | ||
50 | } | ||
51 | element.selected.urgent { | ||
52 | background-color: @selected-urgent-background; | ||
53 | text-color: @selected-urgent-foreground; | ||
54 | } | ||
55 | element.selected.active { | ||
56 | background-color: @selected-active-background; | ||
57 | text-color: @selected-active-foreground; | ||
58 | } | ||
59 | element.alternate.normal { | ||
60 | background-color: @alternate-normal-background; | ||
61 | text-color: @alternate-normal-foreground; | ||
62 | } | ||
63 | element.alternate.urgent { | ||
64 | background-color: @alternate-urgent-background; | ||
65 | text-color: @alternate-urgent-foreground; | ||
66 | } | ||
67 | element.alternate.active { | ||
68 | background-color: @alternate-active-background; | ||
69 | text-color: @alternate-active-foreground; | ||
70 | } | ||
71 | scrollbar { | ||
72 | width: 4px; | ||
73 | border: 0; | ||
74 | handle-color: @normal-foreground; | ||
75 | handle-width: 8px; | ||
76 | padding: 0; | ||
77 | } | ||
78 | mode-switcher { | ||
79 | border: 2px 0px 0px; | ||
80 | border-color: @separatorcolor; | ||
81 | } | ||
82 | button { | ||
83 | spacing: 0; | ||
84 | text-color: @normal-foreground; | ||
85 | } | ||
86 | button.selected { | ||
87 | background-color: @selected-normal-background; | ||
88 | text-color: @selected-normal-foreground; | ||
89 | } | ||
90 | case-indicator { | ||
91 | spacing: 0; | ||
92 | text-color: @normal-foreground; | ||
93 | } | ||
94 | entry { | ||
95 | spacing: 0; | ||
96 | text-color: @normal-foreground; | ||
97 | } | ||
98 | prompt { | ||
99 | spacing: 0; | ||
100 | text-color: @normal-foreground; | ||
101 | } | ||
102 | inputbar { | ||
103 | enabled: false; | ||
104 | children: [ case-indicator ]; | ||
105 | } | ||
106 | textbox-prompt-colon { | ||
107 | expand: false; | ||
108 | str: ":"; | ||
109 | margin: 0px 0.3em 0em 0em; | ||
110 | text-color: @normal-foreground; | ||
111 | } | ||
112 | |||