split off systray into 2 areas
This commit is contained in:
parent
90b3451c66
commit
8161549add
3 changed files with 45 additions and 48 deletions
|
|
@ -51,6 +51,25 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
"org.kde.plasma.panelspacer"
|
||||||
|
"org.kde.plasma.activitypager"
|
||||||
|
"org.kde.plasma.marginsseparator"
|
||||||
|
{
|
||||||
|
systemTray.items = {
|
||||||
|
shown = [
|
||||||
|
"org.kde.plasma.battery"
|
||||||
|
"org.kde.plasma.bluetooth"
|
||||||
|
"org.kde.plasma.networkmanagement"
|
||||||
|
"org.kde.plasma.volume"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
digitalClock = {
|
||||||
|
calendar.firstDayOfWeek = "sunday";
|
||||||
|
time.format = "12h";
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
40
home/all.nix
40
home/all.nix
|
|
@ -289,18 +289,12 @@
|
||||||
floating = true;
|
floating = true;
|
||||||
alignment = "left";
|
alignment = "left";
|
||||||
widgets = [
|
widgets = [
|
||||||
# Or you can configure the widgets by adding the widget-specific options for it.
|
|
||||||
# See modules/widgets for supported widgets and options for these widgets.
|
|
||||||
# For example:
|
|
||||||
{
|
{
|
||||||
kickoff = {
|
kickoff = {
|
||||||
sortAlphabetically = true;
|
sortAlphabetically = true;
|
||||||
# icon = "nix-snowflake-white";
|
# icon = "nix-snowflake-white";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# Adding configuration to the widgets can also for example be used to
|
|
||||||
# pin apps to the task-manager, which this example illustrates by
|
|
||||||
# pinning dolphin and konsole to the task-manager by default with widget-specific options.
|
|
||||||
{
|
{
|
||||||
iconTasks = {
|
iconTasks = {
|
||||||
launchers = [
|
launchers = [
|
||||||
|
|
@ -311,40 +305,6 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# If no configuration is needed, specifying only the name of the
|
|
||||||
# widget will add them with the default configuration.
|
|
||||||
"org.kde.plasma.activitypager"
|
|
||||||
"org.kde.plasma.marginsseparator"
|
|
||||||
# If you need configuration for your widget, instead of specifying the
|
|
||||||
# the keys and values directly using the config attribute as shown
|
|
||||||
# above, plasma-manager also provides some higher-level interfaces for
|
|
||||||
# configuring the widgets. See modules/widgets for supported widgets
|
|
||||||
# and options for these widgets. The widgets below shows two examples
|
|
||||||
# of usage, one where we add a digital clock, setting 12h time and
|
|
||||||
# first day of the week to Sunday and another adding a systray with
|
|
||||||
# some modifications in which entries to show.
|
|
||||||
{
|
|
||||||
systemTray.items = {
|
|
||||||
# We explicitly show bluetooth and battery
|
|
||||||
shown = [
|
|
||||||
"org.kde.plasma.battery"
|
|
||||||
"org.kde.plasma.bluetooth"
|
|
||||||
"org.kde.plasma.networkmanagement"
|
|
||||||
"org.kde.plasma.volume"
|
|
||||||
];
|
|
||||||
# And explicitly hide networkmanagement and volume
|
|
||||||
# hidden = [
|
|
||||||
# "org.kde.plasma.networkmanagement"
|
|
||||||
# "org.kde.plasma.volume"
|
|
||||||
# ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
digitalClock = {
|
|
||||||
calendar.firstDayOfWeek = "sunday";
|
|
||||||
time.format = "12h";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,7 @@
|
||||||
}
|
}
|
||||||
"org.kde.plasma.appmenu"
|
"org.kde.plasma.appmenu"
|
||||||
"org.kde.plasma.panelspacer"
|
"org.kde.plasma.panelspacer"
|
||||||
|
"org.kde.plasma.activitypager"
|
||||||
{
|
{
|
||||||
plasmusicToolbar = {
|
plasmusicToolbar = {
|
||||||
panelIcon = {
|
panelIcon = {
|
||||||
|
|
@ -104,6 +105,23 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
"org.kde.plasma.marginsseparator"
|
||||||
|
{
|
||||||
|
systemTray.items = {
|
||||||
|
shown = [
|
||||||
|
"org.kde.plasma.battery"
|
||||||
|
"org.kde.plasma.bluetooth"
|
||||||
|
"org.kde.plasma.networkmanagement"
|
||||||
|
"org.kde.plasma.volume"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
digitalClock = {
|
||||||
|
calendar.firstDayOfWeek = "sunday";
|
||||||
|
time.format = "12h";
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue