Miscellaneous desktop stuff
This commit is contained in:
parent
6790e3ac3b
commit
4a107f660c
8 changed files with 45 additions and 15 deletions
|
@ -204,7 +204,7 @@ window {
|
|||
}
|
||||
|
||||
.hostname {
|
||||
font-weight: 600;
|
||||
font-weight: 500;
|
||||
font-size: 1.1em;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-family: monospace;
|
||||
|
@ -213,7 +213,7 @@ window {
|
|||
.workspace-button-big {
|
||||
color: white;
|
||||
font-family: "sans-serif";
|
||||
font-weight: 400;
|
||||
font-weight: 500;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
|
@ -222,7 +222,7 @@ window {
|
|||
}
|
||||
|
||||
.workspace-name {
|
||||
font-weight: 500;
|
||||
font-weight: 600;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
|
@ -238,7 +238,7 @@ window {
|
|||
.system-stats-title {
|
||||
font-family: sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: 500;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.currently-playing-big {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Application } from "./application.js";
|
||||
import { on_window_event } from "../../state.js";
|
||||
const { query } = await Service.import("applications");
|
||||
const { query, reload } = await Service.import("applications");
|
||||
|
||||
const Launcher = () => {
|
||||
let applications = query("").map(Application);
|
||||
|
@ -13,6 +13,7 @@ const Launcher = () => {
|
|||
});
|
||||
|
||||
function repopulate() {
|
||||
reload();
|
||||
applications = query("").map(Application);
|
||||
list.children = applications;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue