replace ghostty with wezterm

This commit is contained in:
2026-02-11 19:59:01 +01:00
parent ad5e4a1303
commit 8f525e3c52
20 changed files with 47 additions and 166 deletions
@@ -16,7 +16,7 @@ MonitorItem {
action.signal(15);
return ;
}
action.exec(["ghostty", "-e", "btop"]);
action.exec(["wezterm", "start", "--", "btop"]);
}
Process {
@@ -16,7 +16,7 @@ MonitorItem {
action.signal(15);
return ;
}
action.exec(["ghostty", "-e", "btop"]);
action.exec(["wezterm", "start", "--", "btop"]);
}
Process {
@@ -19,7 +19,7 @@ MonitorItem {
action.signal(15);
return ;
}
action.exec(["ghostty", "-e", "btop"]);
action.exec(["wezterm", "start", "--", "btop"]);
}
onRightClicked: {
_showPercent = !_showPercent;
@@ -67,7 +67,7 @@ Singleton {
}
function showLyricsText() {
action.command = ["sh", "-c", "ghostty -e sh -c 'spotify-lyrics fetch 2>/dev/null | less'"];
action.command = ["sh", "-c", "wezterm start -- sh -c 'spotify-lyrics fetch 2>/dev/null | less'"];
action.startDetached();
}