nix fmt; new screen
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
This commit is contained in:
parent
3a274432ec
commit
09830852e9
6 changed files with 56 additions and 53 deletions
BIN
doc/screen.png
BIN
doc/screen.png
Binary file not shown.
|
Before Width: | Height: | Size: 2.2 MiB After Width: | Height: | Size: 3.2 MiB |
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{...}: {
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,55 +1,58 @@
|
||||||
{lib,config,...}: {
|
{config, ...}: {
|
||||||
programs = if (config.home.gui.sessionType == "Hyprland") then {
|
programs =
|
||||||
noctalia-shell = {
|
if (config.home.gui.sessionType == "Hyprland")
|
||||||
enable = true;
|
then {
|
||||||
settings = {
|
noctalia-shell = {
|
||||||
bar = {
|
enable = true;
|
||||||
density = "compact";
|
settings = {
|
||||||
position = "right";
|
bar = {
|
||||||
showCapsule = false;
|
density = "compact";
|
||||||
|
position = "right";
|
||||||
|
showCapsule = false;
|
||||||
|
|
||||||
widgets = {
|
widgets = {
|
||||||
left = [
|
left = [
|
||||||
{
|
{
|
||||||
id = "SidePanelToggle";
|
id = "SidePanelToggle";
|
||||||
useDistroLogo = true;
|
useDistroLogo = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
id = "Workspace";
|
id = "Workspace";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
id = "MediaMini";
|
id = "MediaMini";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
center = [
|
center = [
|
||||||
{
|
{
|
||||||
formatHorizontal = "HH:mm";
|
formatHorizontal = "HH:mm";
|
||||||
formatVertical = "HH mm";
|
formatVertical = "HH mm";
|
||||||
id = "Clock";
|
id = "Clock";
|
||||||
useMonospacedFont = true;
|
useMonospacedFont = true;
|
||||||
usePrimaryColor = true;
|
usePrimaryColor = true;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
right = [
|
right = [
|
||||||
{
|
{
|
||||||
id = "Volume";
|
id = "Volume";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
id = "Tray";
|
id = "Tray";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
id = "NotificationHistory";
|
id = "NotificationHistory";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
} else {};
|
else {};
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue