Commit 9e8ed17

HPCesia <me@hpcesia.com>
2025-07-01 16:55:11
feat(desktop): switch default term to wezterm
1 parent 572e603
Changed files (2)
home
linux
home/linux/gui/plasma/options/configs.nix
@@ -2,8 +2,8 @@
   programs.plasma.configFile = {
     kdeglobals = {
       General = {
-        TerminalApplication = "ghostty";
-        TerminalService = "com.mitchellh.ghostty";
+        TerminalApplication = "wezterm start --cwd .";
+        TerminalService = "org.wezfurlong.wezterm.desktop";
       };
     };
   };
home/linux/gui/plasma/options/shortcuts.nix
@@ -1,5 +1,5 @@
 {...}: {
   programs.plasma.shortcuts = {
-    "services/com.mitchellh.ghostty"._launch = "Meta+`";
+    "services/org.wezfurlong.wezterm.desktop"._launch = "Meta+`";
   };
 }