niri: swap roles for ghostty and kitty & ghostty: ghostty-capture

This commit is contained in:
2025-11-28 03:44:11 +01:00
parent 4c69672211
commit 1bf6921992
7 changed files with 57 additions and 14 deletions

View File

@@ -16,7 +16,7 @@ MonitorItem {
action.signal(15);
return ;
}
action.exec(["ghostty", "-e", "btop"]);
action.exec(["kitty", "-e", "btop"]);
}
Process {

View File

@@ -16,7 +16,7 @@ MonitorItem {
action.signal(15);
return ;
}
action.exec(["ghostty", "-e", "btop"]);
action.exec(["kitty", "-e", "btop"]);
}
Process {

View File

@@ -19,7 +19,7 @@ MonitorItem {
action.signal(15);
return ;
}
action.exec(["ghostty", "-e", "btop"]);
action.exec(["kitty", "-e", "btop"]);
}
onRightClicked: {
_showPercent = !_showPercent;

View File

@@ -67,7 +67,7 @@ Singleton {
}
function showLyricsText() {
action.command = ["sh", "-c", "ghostty -e sh -c 'spotify-lyrics fetch | less'"];
action.command = ["sh", "-c", "ghostty -e sh -c 'spotify-lyrics fetch 2>/dev/null | less'"];
action.startDetached();
}