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/worldclock.rasi
parenta6d2e5e6fb9adc84c32e86630b4846b1765c7d77 (diff)
downloaddotfiles-d2d735742ca61b211c9b48a2209d36395daebcf4.tar.gz
+ add existing config
Diffstat (limited to 'dot_config/rofi/worldclock.rasi')
-rw-r--r--dot_config/rofi/worldclock.rasi120
1 files changed, 120 insertions, 0 deletions
diff --git a/dot_config/rofi/worldclock.rasi b/dot_config/rofi/worldclock.rasi
new file mode 100644
index 0000000..90046a1
--- /dev/null
+++ b/dot_config/rofi/worldclock.rasi
@@ -0,0 +1,120 @@
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 sidebar-mode: false;
12}
13
14@import "~/.config/rofi/arc_dark_transparent_colors.rasi"
15
16window {
17 background-color: @background;
18 border: 0;
19 padding: 10;
20 transparency: "real";
21 width: 150px;
22 location: east;
23 /*y-offset: 18;*/
24 /*x-offset: 850;*/
25}
26listview {
27 lines: 6;
28 columns: 1;
29 scrollbar: false;
30}
31element {
32 border: 0;
33 padding: 1px;
34}
35element-text {
36 background-color: inherit;
37 text-color: inherit;
38}
39element.normal.normal {
40 background-color: @normal-background;
41 text-color: @normal-foreground;
42}
43element.normal.urgent {
44 background-color: @urgent-background;
45 text-color: @urgent-foreground;
46}
47element.normal.active {
48 background-color: @active-background;
49 text-color: @active-foreground;
50}
51element.selected.normal {
52 background-color: @selected-normal-background;
53 text-color: @selected-normal-foreground;
54}
55element.selected.urgent {
56 background-color: @selected-urgent-background;
57 text-color: @selected-urgent-foreground;
58}
59element.selected.active {
60 background-color: @selected-active-background;
61 text-color: @selected-active-foreground;
62}
63element.alternate.normal {
64 background-color: @alternate-normal-background;
65 text-color: @alternate-normal-foreground;
66}
67element.alternate.urgent {
68 background-color: @alternate-urgent-background;
69 text-color: @alternate-urgent-foreground;
70}
71element.alternate.active {
72 background-color: @alternate-active-background;
73 text-color: @alternate-active-foreground;
74}
75scrollbar {
76 width: 4px;
77 border: 0;
78 handle-color: @normal-foreground;
79 handle-width: 8px;
80 padding: 0;
81}
82mode-switcher {
83 border: 2px 0px 0px;
84 border-color: @separatorcolor;
85}
86button {
87 spacing: 0;
88 text-color: @normal-foreground;
89}
90button.selected {
91 background-color: @selected-normal-background;
92 text-color: @selected-normal-foreground;
93}
94inputbar {
95 spacing: 0;
96 text-color: @normal-foreground;
97 padding: 1px;
98}
99case-indicator {
100 spacing: 0;
101 text-color: @normal-foreground;
102}
103entry {
104 spacing: 0;
105 text-color: @normal-foreground;
106}
107prompt {
108 spacing: 0;
109 text-color: @normal-foreground;
110}
111inputbar {
112 children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
113}
114textbox-prompt-colon {
115 expand: false;
116 str: ":";
117 margin: 0px 0.3em 0em 0em;
118 text-color: @normal-foreground;
119}
120
Powered by cgit v1.2.3 (git 2.41.0)