Correct enum values for system.defaults.NSGlobalDomain.AppleIconAppearanceTheme
This commit is contained in:
parent
7be9c1b136
commit
5206a9fd30
3 changed files with 3 additions and 3 deletions
|
|
@ -53,7 +53,7 @@ in {
|
|||
};
|
||||
|
||||
system.defaults.NSGlobalDomain.AppleIconAppearanceTheme = mkOption {
|
||||
type = types.nullOr (types.enum [ "DarkRegular" "DarkAutomatic" "ClearLight" "Clear Dark" "Clear Automatic" "TintedLight" "TintedDark" "TintedAutomatic" ]);
|
||||
type = types.nullOr (types.enum [ "RegularDark" "RegularAutomatic" "ClearLight" "ClearDark" "ClearAutomatic" "TintedLight" "TintedDark" "TintedAutomatic" ]);
|
||||
default = null;
|
||||
description = ''
|
||||
Set icon and widget style
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ launchctl asuser "$(id -u -- test-defaults-user)" sudo --user=test-defaults-user
|
|||
launchctl asuser "$(id -u -- test-defaults-user)" sudo --user=test-defaults-user -- defaults write -g AppleIconAppearanceTheme '<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<string>DarkRegular</string>
|
||||
<string>RegularDark</string>
|
||||
</plist>'
|
||||
launchctl asuser "$(id -u -- test-defaults-user)" sudo --user=test-defaults-user -- defaults write -g AppleKeyboardUIMode '<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
system.defaults.NSGlobalDomain.AppleEnableMouseSwipeNavigateWithScrolls = false;
|
||||
system.defaults.NSGlobalDomain.AppleEnableSwipeNavigateWithScrolls = false;
|
||||
system.defaults.NSGlobalDomain.AppleFontSmoothing = 1;
|
||||
system.defaults.NSGlobalDomain.AppleIconAppearanceTheme = "DarkRegular";
|
||||
system.defaults.NSGlobalDomain.AppleIconAppearanceTheme = "RegularDark";
|
||||
system.defaults.NSGlobalDomain.AppleICUForce24HourTime = true;
|
||||
system.defaults.NSGlobalDomain.AppleKeyboardUIMode = 3;
|
||||
system.defaults.NSGlobalDomain.ApplePressAndHoldEnabled = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue