Plasma config updates
Set theme and terminal program explicitly, enable virtual desktops, enable NightColor mode with default location settings.
This commit is contained in:
parent
98b72ac11d
commit
77af8df735
|
@ -18,6 +18,8 @@
|
||||||
workspace = {
|
workspace = {
|
||||||
clickItemTo = "open";
|
clickItemTo = "open";
|
||||||
lookAndFeel = "org.kde.breeze.desktop";
|
lookAndFeel = "org.kde.breeze.desktop";
|
||||||
|
theme = "breeze-light";
|
||||||
|
colorScheme = "BreezeLight";
|
||||||
cursor = {
|
cursor = {
|
||||||
theme = "volantes_cursors";
|
theme = "volantes_cursors";
|
||||||
size = 32;
|
size = 32;
|
||||||
|
@ -76,6 +78,7 @@
|
||||||
name = "org.kde.plasma.icontasks";
|
name = "org.kde.plasma.icontasks";
|
||||||
config = {
|
config = {
|
||||||
General.launchers = [
|
General.launchers = [
|
||||||
|
"applications:systemsettings.desktop"
|
||||||
"applications:org.kde.dolphin.desktop"
|
"applications:org.kde.dolphin.desktop"
|
||||||
"applications:Alacritty.desktop"
|
"applications:Alacritty.desktop"
|
||||||
"applications:emacs.desktop"
|
"applications:emacs.desktop"
|
||||||
|
@ -101,6 +104,12 @@
|
||||||
ksmserver = {
|
ksmserver = {
|
||||||
"Lock Session" = ["Screensaver" "Meta+Alt+L"];
|
"Lock Session" = ["Screensaver" "Meta+Alt+L"];
|
||||||
};
|
};
|
||||||
|
kwin = {
|
||||||
|
"Walk Through Windows" = "Meta+Tab";
|
||||||
|
"Walk Through Windows (Reverse)" = "Meta+Shift+Tab";
|
||||||
|
"Walk Through Windows of Current Application" = "Alt+`";
|
||||||
|
"Walk Through Windows of Current Application (Reverse)" = "Alt+¬";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
startup.startupScript = {
|
startup.startupScript = {
|
||||||
|
@ -110,16 +119,38 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
kwin.effects = {
|
kwin = {
|
||||||
translucency.enable = true;
|
virtualDesktops = {
|
||||||
blur.enable = true;
|
rows = 2;
|
||||||
cube.enable = true;
|
number = 6;
|
||||||
|
};
|
||||||
|
effects = {
|
||||||
|
translucency.enable = true;
|
||||||
|
blur.enable = true;
|
||||||
|
cube.enable = true;
|
||||||
|
dimAdminMode.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
configFile = {
|
configFile = {
|
||||||
|
kdeglobals = {
|
||||||
|
General = {
|
||||||
|
TerminalApplication = "alacritty";
|
||||||
|
TerminalService = "Alacritty.desktop";
|
||||||
|
};
|
||||||
|
};
|
||||||
kscreenlockerrc = {
|
kscreenlockerrc = {
|
||||||
|
Daemon.Timeout = 15;
|
||||||
Greeter.WallpaperPlugin = "org.kde.potd";
|
Greeter.WallpaperPlugin = "org.kde.potd";
|
||||||
};
|
};
|
||||||
|
kwinrc = {
|
||||||
|
NightColor = {
|
||||||
|
Active = true;
|
||||||
|
Mode = "Location";
|
||||||
|
LatitudeFixed = "51.7";
|
||||||
|
LongitudeFixed = "-1.2";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue