forked from Shinonome/alt-illogical-impulse
ac6d3adeb9
BREAKING CHANGE: Remove external dots-hyprland dependency - Imported all essential configs from dots-hyprland/installer-replication - Added complete configs/ directory with: - hypr/ - Hyprland configuration - quickshell/ - Quickshell widgets and config - applications/ - Application configurations - scripts/ - Utility scripts - matugen/ - Material You theming - Updated flake.nix to use local ./configs instead of external repo - Simplified update-flake script (removed external repo management) - Updated README to reflect self-contained architecture - All builds pass with local configurations Benefits: - No external repository dependencies - Faster builds (no network dependencies) - Version controlled configs in single repo - Easier maintenance and development - Complete installer replication in one place
56 lines
1.4 KiB
CSS
56 lines
1.4 KiB
CSS
/* wlogout style with Material You theming */
|
|
|
|
* {
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(12, 12, 12, 0.9);
|
|
}
|
|
|
|
button {
|
|
color: {{colors.on_surface.default.hex}};
|
|
background-color: {{colors.surface_container.default.hex}};
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 25%;
|
|
border-radius: 18px;
|
|
margin: 5px;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
background-color: {{colors.primary_container.default.hex}};
|
|
color: {{colors.on_primary_container.default.hex}};
|
|
border-color: {{colors.primary.default.hex}};
|
|
outline-style: none;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
#lock {
|
|
background-image: image(url("icons/lock.png"), url("/usr/share/wlogout/icons/lock.png"));
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("icons/logout.png"), url("/usr/share/wlogout/icons/logout.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("icons/suspend.png"), url("/usr/share/wlogout/icons/suspend.png"));
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: image(url("icons/hibernate.png"), url("/usr/share/wlogout/icons/hibernate.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("icons/shutdown.png"), url("/usr/share/wlogout/icons/shutdown.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("icons/reboot.png"), url("/usr/share/wlogout/icons/reboot.png"));
|
|
}
|