This commit is contained in:
ItsLemmy
2025-10-31 21:31:34 -04:00
parent 1d364e994b
commit 998dbc540f
4 changed files with 6 additions and 9 deletions
+1 -1
View File
@@ -525,7 +525,7 @@ ColumnLayout {
description: I18n.tr("settings.color-scheme.templates.terminal.description")
defaultExpanded: false
NCheckbox {
NCheckbox {
label: "Alacritty"
description: ProgramCheckerService.footAvailable ? I18n.tr("settings.color-scheme.templates.terminal.alacritty.description", {
"filepath": "~/.config/alacritty/themes/noctalia"
+2 -4
View File
@@ -103,13 +103,11 @@ Singleton {
"name": "kitty",
"path": "Terminal/kitty.conf",
"output": "~/.config/kitty/themes/noctalia.conf"
},
{
}, {
"name": "alacritty",
"path": "Terminal/alacritty.toml",
"output": "~/.config/alacritty/themes/noctalia.toml"
}
]
}]
terminals.forEach(function (terminal) {
if (Settings.data.templates[terminal.name]) {
+2 -3
View File
@@ -314,8 +314,7 @@ Singleton {
if (result === "limited" || result === "portal") {
ToastService.showWarning(cachedLastConnected, "toast.internet.limited")
}
else {
} else {
scan()
}
}
@@ -518,7 +517,7 @@ Singleton {
}
}
environment: {
"LC_ALL": "C"
"LC_ALL": "C"
}
stdout: StdioCollector {
+1 -1
View File
@@ -21,4 +21,4 @@ Singleton {
function showError(message, description = "", duration = 5000) {
notify(message, description, "", "error", duration)
}
}
}