Skip to content

Commit

Permalink
Release 0.10.0 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc authored Sep 23, 2021
1 parent b57e828 commit 1e89c4b
Show file tree
Hide file tree
Showing 13 changed files with 208 additions and 269 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,9 @@
* valac
* libgtk-3-dev
* libgranite-dev (>= 5.2.0)
* libbamf3-dev
* libwnck-3-dev
* libgtop2-dev
* libwingpanel-2.0-dev
* libxml2-utils
* meson

### Clone, Build & Install
Expand Down
7 changes: 6 additions & 1 deletion data/com.github.stsdc.monitor.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@
<url type="help">https://github.com/stsdc/monitor/issues</url>

<releases>
<release version="0.10.0" date="2021-09-23">
​ <description>
​ <p>Adds dark theme 🌚</p>
​ </description>
​</release>
<release version="0.9.5" date="2021-08-30">
​ <description>
​ <p>Uses Wingpanel v3; New *.deb package maintainer: Kristopher Ives </p>
​ </description>
</release>
​</release>
<release version="0.9.4" date="2021-04-23">
​ <description>
​ <p>🐛 Should fix empty Indicator. Please reboot after installation ⚡️</p>
Expand Down
3 changes: 2 additions & 1 deletion data/css.gresource.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/com/github/stsdc/monitor">
<file alias="Application.css" compressed="true">Application.css</file>
<file alias="light.css" compressed="true">light.css</file>
<file alias="dark.css" compressed="true">dark.css</file>
</gresource>
</gresources>
166 changes: 166 additions & 0 deletions data/dark.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
.roundy-label,
.roundy-label:hover,
.roundy-label:selected,
.roundy-label:selected:focus,
.roundy-label:hover:selected {
background-image: none;
background-color: @SILVER_900;
box-shadow: none;
color: alpha(@text_color, 0.7);
font-weight: 700;
border-radius: 10px;
padding: 0 6px;
margin: 0 3px;
border-width: 0;
}

.green {
background-color: alpha(@LIME_300, 0.6);
}

.blue {
background-color: alpha(@BLUEBERRY_300, 0.6);
}

/* .vertical-label,
.vertical-label:hover,
.vertical-label:selected,
.vertical-label:selected:focus,
.vertical-label:hover:selected {
} */

.label-vertical {

}

.label-vertical-val {
color: @text_color, 1;
font-size: 30px;
font-weight: 200;
/* padding: 0 6px;
margin: 0 3px; */
border-width: 0;
}

.usage-label-container {
border: 1px solid @SILVER_900;
border-radius: 3px;
background-color: alpha(@SILVER_900, 0.5);
}

.username-current {
background-color: @SILVER_900;
color: alpha(@text_color, 0.7);
}

.username-other {
background-color: @BANANA_300;
color: #381F00;
}

.username-root {
background-color: @STRAWBERRY_300;
color: @SILVER_100;
}

.state_badge,
.state_badge:hover,
.state_badge:selected,
.state_badge:selected:focus,
.state_badge:hover:selected {
background-image: none;
background-color: @BLUEBERRY_500;
box-shadow: none;
color: white;
font-weight: 700;
border-radius: 10px;
padding: 0 6px;
margin: 0 3px;
border-width: 0;
}

.core_badge {
background-color: @SILVER_900;
border-radius: 8px;
padding-right: 4px;
padding-left:2px;
font-size: 10px;
color: @text_color;
border: 1px solid @SILVER_700;
}

.core_badge-mild-warning {
background-color: alpha(@BANANA_900, 0.7);
color: @BANANA_300;
border: 1px solid alpha(@BANANA_700, 0.7);
}

.core_badge-strong-warning {
background-color: alpha(@ORANGE_900, 0.7);
color: @ORANGE_300;
border: 1px solid alpha(@ORANGE_700, 0.7);
}

.core_badge-critical-warning {
background-color: @STRAWBERRY_900;
color: @STRAWBERRY_100;
border: 1px solid @STRAWBERRY_700;
}

.command_wrapper {
background-color: #fdf6e3;
border-radius: 3px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.20);
padding: 5px;
}

.command text {
background-color: #fdf6e3;
}
.command {
font-family: monospace;
}

.small-text {
color: @SILVER_500;
font-weight:bold;
font-size:9px;
}

.graph {
border: 1px @SILVER_900 solid;
border-radius: 6px

}

.open_files_list_box_wrapper {
border: 1px @SILVER_900 solid;
}

.open_files_list_box {

}
.open_files_list_box_row {
border-bottom: 1px @SILVER_900 solid;
}

.open_files_list_box_row label {
font-family: monospace;
/* background-color: @SILVER_300; */
padding: 6px 2px 2px;
border-radius: 4px;
}

.open_files_list_box_row image {
color: @SILVER_700;
margin: 6px;
}

.bold {
font-weight: bold;
}

.text-secondary {
color: @SILVER_700;
}
4 changes: 2 additions & 2 deletions data/Application.css → data/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
}

.label-vertical-val {
color: alpha(@text_color, 1);
color: @text_color, 1;
font-size: 30px;
font-weight: 100;
font-weight: 200;
/* padding: 0 6px;
margin: 0 3px; */
border-width: 0;
Expand Down
Loading

0 comments on commit 1e89c4b

Please sign in to comment.