add aerothemeplasma
This commit is contained in:
parent
a381fd79a9
commit
9705e9f47c
7 changed files with 102 additions and 251 deletions
|
|
@ -1,7 +1,12 @@
|
|||
{ pkgs, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
colors = {
|
||||
scheme = "catppuccin-mocha";
|
||||
scheme = "catppuccin-latte";
|
||||
accent = "base09";
|
||||
};
|
||||
|
||||
|
|
@ -24,7 +29,7 @@
|
|||
density = "spacious";
|
||||
};
|
||||
|
||||
programs.plasma = {
|
||||
programs.plasma = lib.mkDefault {
|
||||
input.touchpads = [
|
||||
{
|
||||
name = "Apple MTP multi-touch";
|
||||
|
|
@ -42,97 +47,5 @@
|
|||
# this is really annoying on apple laptops
|
||||
org_kde_powerdevil.Sleep = [ ];
|
||||
};
|
||||
|
||||
panels = [
|
||||
# Application name, Global menu and Song information and playback controls at the top
|
||||
{
|
||||
location = "top";
|
||||
height = 42; # 37 for 200%, 42 for 175%
|
||||
floating = false;
|
||||
widgets = [
|
||||
{
|
||||
applicationTitleBar = {
|
||||
behavior = {
|
||||
activeTaskSource = "activeTask";
|
||||
};
|
||||
layout = {
|
||||
elements = [ "windowTitle" ];
|
||||
horizontalAlignment = "right";
|
||||
showDisabledElements = "deactivated";
|
||||
verticalAlignment = "center";
|
||||
};
|
||||
overrideForMaximized.enable = false;
|
||||
windowTitle = {
|
||||
font = {
|
||||
bold = false;
|
||||
fit = "fixedSize";
|
||||
size = 10;
|
||||
};
|
||||
hideEmptyTitle = true;
|
||||
margins = {
|
||||
bottom = 5;
|
||||
left = 10;
|
||||
right = 0;
|
||||
top = 5;
|
||||
};
|
||||
source = "appName";
|
||||
};
|
||||
};
|
||||
}
|
||||
"org.kde.plasma.appmenu"
|
||||
"org.kde.plasma.panelspacer"
|
||||
{
|
||||
plasmusicToolbar = {
|
||||
panelIcon = {
|
||||
albumCover = {
|
||||
useAsIcon = true;
|
||||
radius = 2;
|
||||
};
|
||||
};
|
||||
playbackSource = "auto";
|
||||
musicControls.showPlaybackControls = false;
|
||||
songText = {
|
||||
displayInSeparateLines = true;
|
||||
maximumWidth = 250;
|
||||
scrolling = {
|
||||
behavior = "alwaysScroll";
|
||||
speed = 3;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
"org.kde.plasma.marginsseparator"
|
||||
{
|
||||
systemTray.items = {
|
||||
shown = [
|
||||
"org.kde.plasma.battery"
|
||||
"org.kde.plasma.bluetooth"
|
||||
"org.kde.plasma.networkmanagement"
|
||||
"org.kde.plasma.brightness"
|
||||
"org.kde.plasma.volume"
|
||||
];
|
||||
hidden = [
|
||||
"org.kde.plasma.clipboard"
|
||||
"org.kde.plasma.manage-inputmethod"
|
||||
"org.kde.plasma.cameraindicator"
|
||||
"org.kde.plasma.keyboardlayout"
|
||||
"org.kde.plasma.devicenotifier"
|
||||
"org.kde.plasma.notifications"
|
||||
"org.kde.plasma.weather"
|
||||
"org.kde.plasma.printmanager"
|
||||
"org.kde.plasma.keyboardindicator"
|
||||
"org.kde.plasma.mediacontroller"
|
||||
];
|
||||
};
|
||||
}
|
||||
{
|
||||
digitalClock = {
|
||||
calendar.firstDayOfWeek = "sunday";
|
||||
time.format = "12h";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue