mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
Add theme
This commit is contained in:
parent
a12b8ace7e
commit
f1c21d1125
2 changed files with 12 additions and 11 deletions
|
|
@ -1,15 +1,16 @@
|
||||||
_: {
|
_: {
|
||||||
programs.plasma = {
|
programs.plasma = {
|
||||||
configFile = {
|
configFile = {
|
||||||
"kded5rc"."PlasmaBrowserIntegration"."shownCount" = 1;
|
"kded5rc"."PlasmaBrowserIntegration"."shownCount" = 1;
|
||||||
"kdeglobals"."WM"."activeBackground" = "231,232,235";
|
"kdeglobals"."WM"."activeBackground" = "231,232,235";
|
||||||
"kdeglobals"."WM"."activeBlend" = "231,232,235";
|
"kdeglobals"."WM"."activeBlend" = "231,232,235";
|
||||||
"kdeglobals"."WM"."activeForeground" = "92,97,108";
|
"kdeglobals"."WM"."activeForeground" = "92,97,108";
|
||||||
"kdeglobals"."WM"."inactiveBackground" = "231,232,235";
|
"kdeglobals"."WM"."inactiveBackground" = "231,232,235";
|
||||||
"kdeglobals"."WM"."inactiveBlend" = "231,232,235";
|
"kdeglobals"."WM"."inactiveBlend" = "231,232,235";
|
||||||
"kdeglobals"."WM"."inactiveForeground" = "163,165,172";
|
"kdeglobals"."WM"."inactiveForeground" = "163,165,172";
|
||||||
"kxkbrc"."Layout"."Options" = "terminate:ctrl_alt_bksp,ctrl:nocaps";
|
"kxkbrc"."Layout"."Options" = "terminate:ctrl_alt_bksp,ctrl:nocaps";
|
||||||
"kxkbrc"."Layout"."ResetOldOptions" = true;
|
"kxkbrc"."Layout"."ResetOldOptions" = true;
|
||||||
|
"plasmarc"."Theme"."name" = "Arc";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
{ pkgs, ... }: {
|
{pkgs, ...}: {
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "kde";
|
platformTheme = "kde";
|
||||||
style = {
|
style = {
|
||||||
name = "Arc";
|
name = "arc";
|
||||||
package = pkgs.arc-kde-theme;
|
package = pkgs.arc-kde-theme;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue