Skip to content

Commit 1e89c4b

Browse files
authored
Release 0.10.0 (#243)
1 parent b57e828 commit 1e89c4b

File tree

13 files changed

+208
-269
lines changed

13 files changed

+208
-269
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@
3030
* valac
3131
* libgtk-3-dev
3232
* libgranite-dev (>= 5.2.0)
33-
* libbamf3-dev
3433
* libwnck-3-dev
3534
* libgtop2-dev
3635
* libwingpanel-2.0-dev
37-
* libxml2-utils
3836
* meson
3937

4038
### Clone, Build & Install

data/com.github.stsdc.monitor.appdata.xml.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,16 @@
2828
<url type="help">https://github.com/stsdc/monitor/issues</url>
2929

3030
<releases>
31+
<release version="0.10.0" date="2021-09-23">
32+
​ <description>
33+
​ <p>Adds dark theme 🌚</p>
34+
​ </description>
35+
​</release>
3136
<release version="0.9.5" date="2021-08-30">
3237
​ <description>
3338
​ <p>Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives </p>
3439
​ </description>
35-
</release>
40+
​</release>
3641
<release version="0.9.4" date="2021-04-23">
3742
​ <description>
3843
​ <p>🐛 Should fix empty Indicator. Please reboot after installation ⚡️</p>

data/css.gresource.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<gresources>
33
<gresource prefix="/com/github/stsdc/monitor">
4-
<file alias="Application.css" compressed="true">Application.css</file>
4+
<file alias="light.css" compressed="true">light.css</file>
5+
<file alias="dark.css" compressed="true">dark.css</file>
56
</gresource>
67
</gresources>

data/dark.css

Lines changed: 166 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
.roundy-label,
2+
.roundy-label:hover,
3+
.roundy-label:selected,
4+
.roundy-label:selected:focus,
5+
.roundy-label:hover:selected {
6+
background-image: none;
7+
background-color: @SILVER_900;
8+
box-shadow: none;
9+
color: alpha(@text_color, 0.7);
10+
font-weight: 700;
11+
border-radius: 10px;
12+
padding: 0 6px;
13+
margin: 0 3px;
14+
border-width: 0;
15+
}
16+
17+
.green {
18+
background-color: alpha(@LIME_300, 0.6);
19+
}
20+
21+
.blue {
22+
background-color: alpha(@BLUEBERRY_300, 0.6);
23+
}
24+
25+
/* .vertical-label,
26+
.vertical-label:hover,
27+
.vertical-label:selected,
28+
.vertical-label:selected:focus,
29+
.vertical-label:hover:selected {
30+
31+
} */
32+
33+
.label-vertical {
34+
35+
}
36+
37+
.label-vertical-val {
38+
color: @text_color, 1;
39+
font-size: 30px;
40+
font-weight: 200;
41+
/* padding: 0 6px;
42+
margin: 0 3px; */
43+
border-width: 0;
44+
}
45+
46+
.usage-label-container {
47+
border: 1px solid @SILVER_900;
48+
border-radius: 3px;
49+
background-color: alpha(@SILVER_900, 0.5);
50+
}
51+
52+
.username-current {
53+
background-color: @SILVER_900;
54+
color: alpha(@text_color, 0.7);
55+
}
56+
57+
.username-other {
58+
background-color: @BANANA_300;
59+
color: #381F00;
60+
}
61+
62+
.username-root {
63+
background-color: @STRAWBERRY_300;
64+
color: @SILVER_100;
65+
}
66+
67+
.state_badge,
68+
.state_badge:hover,
69+
.state_badge:selected,
70+
.state_badge:selected:focus,
71+
.state_badge:hover:selected {
72+
background-image: none;
73+
background-color: @BLUEBERRY_500;
74+
box-shadow: none;
75+
color: white;
76+
font-weight: 700;
77+
border-radius: 10px;
78+
padding: 0 6px;
79+
margin: 0 3px;
80+
border-width: 0;
81+
}
82+
83+
.core_badge {
84+
background-color: @SILVER_900;
85+
border-radius: 8px;
86+
padding-right: 4px;
87+
padding-left:2px;
88+
font-size: 10px;
89+
color: @text_color;
90+
border: 1px solid @SILVER_700;
91+
}
92+
93+
.core_badge-mild-warning {
94+
background-color: alpha(@BANANA_900, 0.7);
95+
color: @BANANA_300;
96+
border: 1px solid alpha(@BANANA_700, 0.7);
97+
}
98+
99+
.core_badge-strong-warning {
100+
background-color: alpha(@ORANGE_900, 0.7);
101+
color: @ORANGE_300;
102+
border: 1px solid alpha(@ORANGE_700, 0.7);
103+
}
104+
105+
.core_badge-critical-warning {
106+
background-color: @STRAWBERRY_900;
107+
color: @STRAWBERRY_100;
108+
border: 1px solid @STRAWBERRY_700;
109+
}
110+
111+
.command_wrapper {
112+
background-color: #fdf6e3;
113+
border-radius: 3px;
114+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.20);
115+
padding: 5px;
116+
}
117+
118+
.command text {
119+
background-color: #fdf6e3;
120+
}
121+
.command {
122+
font-family: monospace;
123+
}
124+
125+
.small-text {
126+
color: @SILVER_500;
127+
font-weight:bold;
128+
font-size:9px;
129+
}
130+
131+
.graph {
132+
border: 1px @SILVER_900 solid;
133+
border-radius: 6px
134+
135+
}
136+
137+
.open_files_list_box_wrapper {
138+
border: 1px @SILVER_900 solid;
139+
}
140+
141+
.open_files_list_box {
142+
143+
}
144+
.open_files_list_box_row {
145+
border-bottom: 1px @SILVER_900 solid;
146+
}
147+
148+
.open_files_list_box_row label {
149+
font-family: monospace;
150+
/* background-color: @SILVER_300; */
151+
padding: 6px 2px 2px;
152+
border-radius: 4px;
153+
}
154+
155+
.open_files_list_box_row image {
156+
color: @SILVER_700;
157+
margin: 6px;
158+
}
159+
160+
.bold {
161+
font-weight: bold;
162+
}
163+
164+
.text-secondary {
165+
color: @SILVER_700;
166+
}

data/Application.css renamed to data/light.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
}
3636

3737
.label-vertical-val {
38-
color: alpha(@text_color, 1);
38+
color: @text_color, 1;
3939
font-size: 30px;
40-
font-weight: 100;
40+
font-weight: 200;
4141
/* padding: 0 6px;
4242
margin: 0 3px; */
4343
border-width: 0;

0 commit comments

Comments
 (0)