Commit 8bbca17

HPCesia <me@hpcesia.com>
2025-07-29 09:32:03
feat: disable rounded corner
Because of performance problems.
1 parent 65f1747
Changed files (1)
home
linux
gui
plasma
home/linux/gui/plasma/options/appearance.nix
@@ -12,7 +12,6 @@
 in {
   home.packages = with pkgs; [
     catppuccin-kde
-    kde-rounded-corners
   ];
 
   programs.plasma = {
@@ -50,14 +49,5 @@ in {
       IconSize = 128;
       PreviewSize = 128;
     };
-
-    configFile.kwinrc = {
-      Plugins.kwin4_effect_shapecornersEnabled = true;
-      Round-Corners = lib.mkMerge (lib.map (n: {
-        "${n}UseCustom" = false;
-        "${n}UsePalette" = true;
-        "${n}Palette" = 3;
-      }) ["ActiveOutline" "ActiveOutline" "InactiveOutline" "InactiveSecondOutline"]);
-    };
   };
 }