feat: remove launcher and wallpaper manager

This commit is contained in:
tux
2026-02-17 17:50:13 +05:30
parent 69b93ca32f
commit 00e8ee6d8b
8 changed files with 13 additions and 289 deletions

View File

@@ -1,40 +0,0 @@
@use "./_variable.scss" as *;
window.launcher {
background: $bg-color;
border-radius: $rounded;
padding: 10px;
font-size: $font-size;
.search {
min-width: 300px;
padding: 10px;
color: rgba($fg-color, 0.5);
}
separator {
border: 1px solid rgba($inactive-color, 0.5);
}
.list {
background: $bg-color;
}
.button {
border-radius: $rounded;
padding: 10px;
&:hover,
&:focus {
background: $inactive-color;
}
image {
-gtk-icon-size: 1.5rem;
}
}
.name {
color: $fg-color;
}
}

View File

@@ -1,30 +0,0 @@
@use "./_variable.scss" as *;
@use "sass:math";
@use "sass:list";
window.wallpaper-manager {
background: $bg-color;
color: $fg-color;
min-width: 400px;
margin: 10px;
padding: 20px;
border-radius: $rounded;
.button {
border-radius: $rounded;
opacity: 0.5;
&:hover,
&:focus {
opacity: 1;
}
}
picture {
border-radius: $rounded;
&:hover {
background: $inactive-color;
}
}
}

View File

@@ -4,14 +4,8 @@
// bar
@use "./_bar.scss";
// launcher
@use "./_launcher.scss";
// notifications
@use "./_notification.scss";
// control center
@use "./_control-center.scss";
// wallpaper manager
@use "./_wallpaper-manager.scss";