From 2d7cacbefb846f4d7cb7ac4a0519f15c772714e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Zanghelini?= Date: Fri, 10 Oct 2025 00:17:06 -0300 Subject: [PATCH 01/30] Add more status in the network icon --- .../quickToggles/NetworkToggle.qml | 2 +- .config/quickshell/ii/services/Network.qml | 58 ++++++++++++++----- 2 files changed, 46 insertions(+), 14 deletions(-) diff --git a/.config/quickshell/ii/modules/sidebarRight/quickToggles/NetworkToggle.qml b/.config/quickshell/ii/modules/sidebarRight/quickToggles/NetworkToggle.qml index bb7d0969c..5fd8e3e8d 100644 --- a/.config/quickshell/ii/modules/sidebarRight/quickToggles/NetworkToggle.qml +++ b/.config/quickshell/ii/modules/sidebarRight/quickToggles/NetworkToggle.qml @@ -10,7 +10,7 @@ import Quickshell.Io import Quickshell.Hyprland QuickToggleButton { - toggled: Network.wifiEnabled + toggled: Network.wifiStatus !== "disabled" buttonIcon: Network.materialSymbol onClicked: Network.toggleWifi() altAction: () => { diff --git a/.config/quickshell/ii/services/Network.qml b/.config/quickshell/ii/services/Network.qml index ebca2a61d..181e76cf4 100644 --- a/.config/quickshell/ii/services/Network.qml +++ b/.config/quickshell/ii/services/Network.qml @@ -16,24 +16,35 @@ Singleton { property bool wifi: true property bool ethernet: false - + property bool wifiEnabled: false property bool wifiScanning: false property bool wifiConnecting: connectProc.running property WifiAccessPoint wifiConnectTarget readonly property list wifiNetworks: [] readonly property WifiAccessPoint active: wifiNetworks.find(n => n.active) ?? null + property string wifiStatus: "disconnected" property string networkName: "" property int networkStrength - property string materialSymbol: ethernet ? "lan" : - wifiEnabled ? ( - Network.networkStrength > 80 ? "signal_wifi_4_bar" : - Network.networkStrength > 60 ? "network_wifi_3_bar" : - Network.networkStrength > 40 ? "network_wifi_2_bar" : - Network.networkStrength > 20 ? "network_wifi_1_bar" : - "signal_wifi_0_bar" - ) : "signal_wifi_off" + property string materialSymbol: root.ethernet + ? "lan" + : root.wifiEnabled + ? ( + Network.networkStrength > 83 ? "signal_wifi_4_bar" : + Network.networkStrength > 67 ? "network_wifi" : + Network.networkStrength > 50 ? "network_wifi_3_bar" : + Network.networkStrength > 33 ? "network_wifi_2_bar" : + Network.networkStrength > 17 ? "network_wifi_1_bar" : + "signal_wifi_0_bar" + ) + : (root.wifiStatus === "connecting") + ? "signal_wifi_statusbar_not_connected" + : (root.wifiStatus === "disconnected") + ? "wifi_find" + : (root.wifiStatus === "disabled") + ? "signal_wifi_off" + : "signal_wifi_bad" // Control function enableWifi(enabled = true): void { @@ -153,7 +164,7 @@ Singleton { Process { id: updateConnectionType property string buffer - command: ["sh", "-c", "nmcli -t -f NAME,TYPE,DEVICE c show --active"] + command: ["sh", "-c", "nmcli -t -f TYPE,STATE d status && nmcli -t -f CONNECTIVITY g"] running: true function startCheck() { buffer = ""; @@ -166,14 +177,35 @@ Singleton { } onExited: (exitCode, exitStatus) => { const lines = updateConnectionType.buffer.trim().split('\n'); + const connectivity = lines.pop() // none, limited, full let hasEthernet = false; let hasWifi = false; + let wifiStatus = "disconnected"; lines.forEach(line => { - if (line.includes("ethernet")) + if (line.includes("ethernet") && line.includes("connected")) hasEthernet = true; - else if (line.includes("wireless")) - hasWifi = true; + else if (line.includes("wifi:")) { + if (line.includes("disconnected")) { + wifiStatus = "disconnected" + } + else if (line.includes("connected")) { + hasWifi = true; + wifiStatus = "connected" + + if (connectivity === "limited") { + hasWifi = false; + wifiStatus = "limited" + } + } + else if (line.includes("connecting")) { + wifiStatus = "connecting" + } + else if (line.includes("unavailable")) { + wifiStatus = "disabled" + } + } }); + root.wifiStatus = wifiStatus; root.ethernet = hasEthernet; root.wifi = hasWifi; } From d521e014fd56601baa9c9a3cdebe71a4d0606948 Mon Sep 17 00:00:00 2001 From: clsty Date: Mon, 13 Oct 2025 11:16:42 +0800 Subject: [PATCH 02/30] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b65a913b..acd1cd2bd 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,9 @@
Installation (illogical-impulse Quickshell) - - See the [Wiki](https://ii.clsty.link/en/ii-qs/01setup/) (idempotent script provided) - - In case you can't access the wiki, you can always manually clone this repo and run `install.sh` + - Just run `bash <(curl -s https://ii.clsty.link/setup)` + - Or, clone this repo and run `./install.sh` + - See [document](https://ii.clsty.link/en/ii-qs/01setup/) for details. - **Default keybinds**: Should be somewhat familiar to Windows or GNOME users. Important ones: - `Super`+`/` = keybind list - `Super`+`Enter` = terminal From 8fc6a4b3496c197f2a31e74285801070831bd7e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Zanghelini?= Date: Mon, 13 Oct 2025 02:10:40 -0300 Subject: [PATCH 03/30] Fix dominant color from least_busy_region as BGR --- .config/quickshell/ii/scripts/images/least_busy_region.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/ii/scripts/images/least_busy_region.py b/.config/quickshell/ii/scripts/images/least_busy_region.py index 858ddc527..1d64033c6 100755 --- a/.config/quickshell/ii/scripts/images/least_busy_region.py +++ b/.config/quickshell/ii/scripts/images/least_busy_region.py @@ -294,7 +294,8 @@ def get_dominant_color(image_path, x, y, w, h, screen_width=None, screen_height= _, labels, centers = cv2.kmeans(region, K, None, criteria, 10, cv2.KMEANS_RANDOM_CENTERS) counts = np.bincount(labels.flatten()) dominant = centers[np.argmax(counts)] - return [int(x) for x in dominant] + # Reverse from BGR to RGB + return [int(x) for x in reversed(dominant)] def main(): parser = argparse.ArgumentParser(description="Find least busy region in an image and output a JSON. Made for determining a suitable position for a wallpaper widget.") From 573105d269b43a5584d99801a92447fb7a90ca5d Mon Sep 17 00:00:00 2001 From: clsty Date: Mon, 13 Oct 2025 13:32:52 +0800 Subject: [PATCH 04/30] Add TODO in diagnose --- diagnose | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/diagnose b/diagnose index 667cba850..bdf18c99b 100755 --- a/diagnose +++ b/diagnose @@ -1,7 +1,12 @@ #!/usr/bin/env bash # # This script is for quickly generate helpful info +# # It should be as independent as possible and should not source other files unless it has to +# +# TODO: Add quickshell and Qt version check. +# Pay attention to the version of Qt which quickshell built against. + STY_RED='\e[31m' STY_RESET='\e[00m' From 64e04ae15b721b3741b48d87727a11b0326d0092 Mon Sep 17 00:00:00 2001 From: clsty Date: Mon, 13 Oct 2025 13:40:33 +0800 Subject: [PATCH 05/30] Update CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1c2c57e35..a6e400aff 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,6 +6,10 @@ # Code details +## Contributing to i18n + +For contributing in translation (i18n) for Quickshell, see also `.config/quickshell/translations/tools`. + ## Dynamic loading - If something's not always necessary, especially when guarded by a config option to enable/disable, put it in a `Loader`. One tip with `Loader`s is sometimes you will need to declare positioning properties (like `anchors`) in the `Loader`, not the `sourceComponent`. From 5dedbf91e0fccca4ecf3ae001de6ad079957807f Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:24:02 +0200 Subject: [PATCH 06/30] add gemini powered clock styling --- .../background/cookieClock/CookieClock.qml | 49 +++++++++++++++++++ .../quickshell/ii/modules/common/Config.qml | 26 ++++++++-- .../ii/modules/common/Directories.qml | 1 + .../ii/modules/settings/InterfaceConfig.qml | 16 ++++-- .../scripts/ai/gemini-categorize-wallpaper.sh | 48 ++++++++++++++++++ .../ii/scripts/colors/switchwall.sh | 7 +++ 6 files changed, 141 insertions(+), 6 deletions(-) create mode 100755 .config/quickshell/ii/scripts/ai/gemini-categorize-wallpaper.sh diff --git a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml index 97a143e58..317cfac11 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml @@ -8,6 +8,7 @@ import qs.modules.common.functions import QtQuick import QtQuick.Layouts import Qt5Compat.GraphicalEffects +import Quickshell.Io import "./dateIndicator" import "./minuteMarks" @@ -35,6 +36,54 @@ Item { implicitWidth: implicitSize implicitHeight: implicitSize + function applyStyle(sides, dialStyle, hourHandStyle, minuteHandStyle, secondHandStyle, dateStyle) { + Config.options.background.clock.cookie.sides = sides + Config.options.background.clock.cookie.dialNumberStyle = dialStyle + Config.options.background.clock.cookie.hourHandStyle = hourHandStyle + Config.options.background.clock.cookie.minuteHandStyle = minuteHandStyle + Config.options.background.clock.cookie.secondHandStyle = secondHandStyle + Config.options.background.clock.cookie.dateStyle = dateStyle + } + + function setClockPreset(category) { + if (!Config.options.background.clock.cookie.aiStyling) return; + if (category === "") return; + print("[Cookie clock] Setting clock preset for category: " + category) + // "abstract", "anime", "city", "minimalist", "landscape", "plants", "person", "space" + if (category == "abstract") { + applyStyle(7, "dots", "fill", "medium", "dot", "bubble") + } else if (category == "anime") { + applyStyle(12, "dots", "fill", "bold", "dot", "bubble") + } else if (category == "city" || category == "space") { + applyStyle(23, "full", "hollow", "medium", "classic", "bubble") + } else if (category == "minimalist") { + applyStyle(6, "none", "fill", "bold", "dot", "hide") + } else if (category == "landscape") { + applyStyle(14, "full", "hollow", "medium", "classic", "bubble") + } else if (category == "plants") { + applyStyle(9, "dots", "fill", "bold", "dot", "border") + } else if (category == "person") { + applyStyle(14, "full", "classic", "classic", "classic", "rect") + } + } + + Connections { + target: Config + function onReadyChanged() { + categoryFileView.path = Directories.generatedWallpaperCategoryPath + } + } + + FileView { + id: categoryFileView + path: "" + watchChanges: true + onFileChanged: reload() + onLoaded: { + root.setClockPreset(categoryFileView.text().trim()) + } + } + DropShadow { source: cookie anchors.fill: source diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index c1aea922e..9bbe53079 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -40,11 +40,30 @@ Singleton { obj[keys[keys.length - 1]] = convertedValue; } + Timer { + id: fileReloadTimer + interval: 100 + repeat: false + onTriggered: { + configFileView.reload() + } + } + + Timer { + id: fileWriteTimer + interval: 100 + repeat: false + onTriggered: { + configFileView.writeAdapter() + } + } + FileView { + id: configFileView path: root.filePath watchChanges: true - onFileChanged: reload() - onAdapterUpdated: writeAdapter() + onFileChanged: fileReloadTimer.restart() + onAdapterUpdated: fileWriteTimer.restart() onLoaded: root.ready = true onLoadFailed: error => { if (error == FileViewError.FileNotFound) { @@ -130,11 +149,12 @@ Singleton { property string style: "cookie" // Options: "cookie", "digital" property real scale: 1 property JsonObject cookie: JsonObject { + property bool aiStyling: false property int sides: 14 property string dialNumberStyle: "full" // Options: "dots" , "numbers", "full" , "none" property string hourHandStyle: "fill" // Options: "classic", "fill", "hollow", "hide" property string minuteHandStyle: "medium" // Options "classic", "thin", "medium", "bold", "hide" - property string secondHandStyle: "dot" // Options: "dot", "line" , "hide" + property string secondHandStyle: "dot" // Options: "dot", "line", "classic", "hide" property string dateStyle: "bubble" // Options: "border", "rect", "bubble" , "hide" property bool timeIndicators: true property bool hourMarks: false diff --git a/.config/quickshell/ii/modules/common/Directories.qml b/.config/quickshell/ii/modules/common/Directories.qml index 20d95a33f..9b113de8d 100644 --- a/.config/quickshell/ii/modules/common/Directories.qml +++ b/.config/quickshell/ii/modules/common/Directories.qml @@ -34,6 +34,7 @@ Singleton { property string todoPath: FileUtils.trimFileProtocol(`${Directories.state}/user/todo.json`) property string notificationsPath: FileUtils.trimFileProtocol(`${Directories.cache}/notifications/notifications.json`) property string generatedMaterialThemePath: FileUtils.trimFileProtocol(`${Directories.state}/user/generated/colors.json`) + property string generatedWallpaperCategoryPath: FileUtils.trimFileProtocol(`${Directories.state}/user/generated/wallpaper/category.txt`) property string cliphistDecode: FileUtils.trimFileProtocol(`/tmp/quickshell/media/cliphist`) property string screenshotTemp: "/tmp/quickshell/media/screenshot" property string wallpaperSwitchScriptPath: FileUtils.trimFileProtocol(`${Directories.scriptPath}/colors/switchwall.sh`) diff --git a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index a4e51add5..6828625f5 100644 --- a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -59,8 +59,20 @@ ContentPage { ContentSubsection { visible: Config.options.background.clock.style === "cookie" title: Translation.tr("Cookie clock settings") + + ConfigSwitch { + buttonIcon: "wand_stars" + text: Translation.tr("Auto styling with Gemini") + checked: Config.options.background.clock.cookie.aiStyling + onCheckedChanged: { + Config.options.background.clock.cookie.aiStyling = checked; + } + StyledToolTip { + text: "Uses Gemini to categorize the wallpaper then picks a preset based on it.\nYou'll need to set Gemini API key on the left sidebar first.\nImages are downscaled for performance, but just to be safe,\ndo not select wallpapers with sensitive information." + } + } + ConfigSpinBox { - visible: Config.options.background.clock.style === "cookie" icon: "add_triangle" text: Translation.tr("Sides") value: Config.options.background.clock.cookie.sides @@ -73,7 +85,6 @@ ContentPage { } ConfigSwitch { - visible: Config.options.background.clock.style === "cookie" buttonIcon: "autoplay" text: Translation.tr("Constantly rotate") checked: Config.options.background.clock.cookie.constantlyRotate @@ -86,7 +97,6 @@ ContentPage { } ConfigRow { - visible: Config.options.background.clock.style === "cookie" ConfigSwitch { enabled: Config.options.background.clock.style === "cookie" && Config.options.background.clock.cookie.dialNumberStyle === "dots" || Config.options.background.clock.cookie.dialNumberStyle === "full" diff --git a/.config/quickshell/ii/scripts/ai/gemini-categorize-wallpaper.sh b/.config/quickshell/ii/scripts/ai/gemini-categorize-wallpaper.sh new file mode 100755 index 000000000..33915fb97 --- /dev/null +++ b/.config/quickshell/ii/scripts/ai/gemini-categorize-wallpaper.sh @@ -0,0 +1,48 @@ +#!/usr/bin/env bash + +if [[ -z "$1" ]]; then + echo "Usage: $0 " + exit 1 +fi + +SOURCE_IMG_PATH="$1" +WALLPAPER_NAME="$(basename "$SOURCE_IMG_PATH")" +RESIZED_IMG_PATH="/tmp/quickshell/ai/wallpaper.jpg" +magick "$SOURCE_IMG_PATH" -resize 200x -quality 50 "$RESIZED_IMG_PATH" +API_KEY=$(secret-tool lookup 'application' 'illogical-impulse' | jq -r '.apiKeys.gemini') + +if [[ "$(base64 --version 2>&1)" = *"FreeBSD"* ]]; then +B64FLAGS="--input" +else +B64FLAGS="-w0" +fi + +payload='{ + "contents": [{ + "parts":[ + { + "inline_data": { + "mime_type":"image/jpeg", + "data": "'"$(base64 $B64FLAGS $RESIZED_IMG_PATH)"'" + } + }, + {"text": "Categorize the wallpaper. Its file name is '"$WALLPAPER_NAME"'"} + ] + }], + "generationConfig": { + "responseMimeType": "text/x.enum", + "responseSchema": { + "type": "string", + "enum": [ "abstract", "anime", "city", "minimalist", "landscape", "plants", "person", "space" ] + }, + "temperature": 0, + } +}' +# echo "$payload" | jq +response=$(curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent" \ +-H "x-goog-api-key: $API_KEY" \ +-H 'Content-Type: application/json' \ +-X POST \ +-d "$payload" 2> /dev/null) + +echo "$response" | jq -r '.candidates[0].content.parts[0].text' diff --git a/.config/quickshell/ii/scripts/colors/switchwall.sh b/.config/quickshell/ii/scripts/colors/switchwall.sh index 794b2d0e7..5d1a57c7a 100755 --- a/.config/quickshell/ii/scripts/colors/switchwall.sh +++ b/.config/quickshell/ii/scripts/colors/switchwall.sh @@ -171,6 +171,13 @@ switch() { type_flag="$3" color_flag="$4" color="$5" + + # Start Gemini auto-categorization if enabled + aiStylingEnabled=$(jq -r '.background.clock.cookie.aiStyling' "$SHELL_CONFIG_FILE") + if [[ "$aiStylingEnabled" == "true" ]]; then + "$SCRIPT_DIR/../ai/gemini-categorize-wallpaper.sh" "$imgpath" > "$STATE_DIR/user/generated/wallpaper/category.txt" & + fi + read scale screenx screeny screensizey < <(hyprctl monitors -j | jq '.[] | select(.focused) | .scale, .x, .y, .height' | xargs) cursorposx=$(hyprctl cursorpos -j | jq '.x' 2>/dev/null) || cursorposx=960 cursorposx=$(bc <<< "scale=0; ($cursorposx - $screenx) * $scale / 1") From d208b07a94d0d7eafada8265c5698d7c3f7a5f93 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:56:48 +0200 Subject: [PATCH 07/30] config: lower read/write timer interval --- .config/quickshell/ii/modules/common/Config.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index 9bbe53079..6621d1643 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -42,7 +42,7 @@ Singleton { Timer { id: fileReloadTimer - interval: 100 + interval: 30 repeat: false onTriggered: { configFileView.reload() @@ -51,7 +51,7 @@ Singleton { Timer { id: fileWriteTimer - interval: 100 + interval: 30 repeat: false onTriggered: { configFileView.writeAdapter() From b0cfcaff3d3e748130db4a0162db749262f61744 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 12:13:37 +0200 Subject: [PATCH 08/30] anime: fix anchors in layout --- .../ii/modules/sidebarLeft/Anime.qml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.config/quickshell/ii/modules/sidebarLeft/Anime.qml b/.config/quickshell/ii/modules/sidebarLeft/Anime.qml index 9306a9d09..1b6b47acc 100644 --- a/.config/quickshell/ii/modules/sidebarLeft/Anime.qml +++ b/.config/quickshell/ii/modules/sidebarLeft/Anime.qml @@ -513,25 +513,22 @@ Item { text: "•" } - Item { // NSFW toggle + MouseArea { // NSFW toggle visible: width > 0 implicitWidth: switchesRow.implicitWidth Layout.fillHeight: true + hoverEnabled: true + PointingHandInteraction {} + onPressed: { + nsfwSwitch.checked = !nsfwSwitch.checked + } + RowLayout { id: switchesRow spacing: 5 anchors.centerIn: parent - MouseArea { - anchors.fill: parent - hoverEnabled: true - PointingHandInteraction {} - onPressed: { - nsfwSwitch.checked = !nsfwSwitch.checked - } - } - StyledText { Layout.fillHeight: true Layout.leftMargin: 10 @@ -552,6 +549,7 @@ Item { } } } + } Item { Layout.fillWidth: true } From 02192368d2c5d99fff0cc819a91f9388c4be3902 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 12:16:42 +0200 Subject: [PATCH 09/30] add option to use hyprlock instead of quickshell --- .config/quickshell/ii/GlobalStates.qml | 17 -------------- .../quickshell/ii/modules/common/Config.qml | 1 + .config/quickshell/ii/modules/lock/Lock.qml | 23 +++++++++++++++++++ .../ii/modules/settings/InterfaceConfig.qml | 12 ++++++++++ 4 files changed, 36 insertions(+), 17 deletions(-) diff --git a/.config/quickshell/ii/GlobalStates.qml b/.config/quickshell/ii/GlobalStates.qml index caf94ab16..62eb69ce6 100644 --- a/.config/quickshell/ii/GlobalStates.qml +++ b/.config/quickshell/ii/GlobalStates.qml @@ -28,23 +28,6 @@ Singleton { property bool superReleaseMightTrigger: true property bool workspaceShowNumbers: false - Connections { - target: Config - function onReadyChanged() { - if (Config.options.lock.launchOnStartup && Config.ready && Persistent.ready && Persistent.isNewHyprlandInstance) { - GlobalStates.screenLocked = true; - } - } - } - Connections { - target: Persistent - function onReadyChanged() { - if (Config.options.lock.launchOnStartup && Config.ready && Persistent.ready && Persistent.isNewHyprlandInstance) { - GlobalStates.screenLocked = true; - } - } - } - onSidebarRightOpenChanged: { if (GlobalStates.sidebarRightOpen) { Notifications.timeoutAll(); diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index 6621d1643..3cb5edef6 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -299,6 +299,7 @@ Singleton { } property JsonObject lock: JsonObject { + property bool useHyprlock: false property bool launchOnStartup: false property JsonObject blur: JsonObject { property bool enable: false diff --git a/.config/quickshell/ii/modules/lock/Lock.qml b/.config/quickshell/ii/modules/lock/Lock.qml index 4b086970f..76cbfe17a 100644 --- a/.config/quickshell/ii/modules/lock/Lock.qml +++ b/.config/quickshell/ii/modules/lock/Lock.qml @@ -112,6 +112,10 @@ Scope { description: "Locks the screen" onPressed: { + if (Config.options.lock.useHyprlock) { + Quickshell.execDetached(["hyprlock"]) + return; + } GlobalStates.screenLocked = true; } } @@ -125,4 +129,23 @@ Scope { lockContext.shouldReFocus(); } } + + Connections { + target: Config + function onReadyChanged() { + print("lock after config") + if (Config.options.lock.launchOnStartup && Config.ready && Persistent.ready && Persistent.isNewHyprlandInstance) { + Hyprland.dispatch("global quickshell:lock") + } + } + } + Connections { + target: Persistent + function onReadyChanged() { + print("lock after persistent") + if (Config.options.lock.launchOnStartup && Config.ready && Persistent.ready && Persistent.isNewHyprlandInstance) { + Hyprland.dispatch("global quickshell:lock") + } + } + } } diff --git a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index 6828625f5..cb67a7e90 100644 --- a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -462,6 +462,18 @@ ContentPage { icon: "lock" title: Translation.tr("Lock screen") + ConfigSwitch { + buttonIcon: "water_drop" + text: Translation.tr('Use Hyprlock (instead of Quickshell)') + checked: Config.options.lock.useHyprlock + onCheckedChanged: { + Config.options.lock.useHyprlock = checked; + } + StyledToolTip { + text: Translation.tr("If you want to somehow use fingerprint unlock...") + } + } + ConfigSwitch { buttonIcon: "account_circle" text: Translation.tr('Launch on startup') From 5bf63bc36c7af0e8a411a776d9d4ee6fb706bd56 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:00:31 +0200 Subject: [PATCH 10/30] adjust stupid config rw delay --- .config/quickshell/ii/modules/common/Config.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index 3cb5edef6..7602165b6 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -42,7 +42,7 @@ Singleton { Timer { id: fileReloadTimer - interval: 30 + interval: 50 repeat: false onTriggered: { configFileView.reload() @@ -51,7 +51,7 @@ Singleton { Timer { id: fileWriteTimer - interval: 30 + interval: 50 repeat: false onTriggered: { configFileView.writeAdapter() From 6235e6e6658dd538c52cd0cf35c7157a971fecbd Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:00:50 +0200 Subject: [PATCH 11/30] settings: fix untranslatable text --- .config/quickshell/ii/modules/settings/InterfaceConfig.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index cb67a7e90..95a6c00b8 100644 --- a/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -68,7 +68,7 @@ ContentPage { Config.options.background.clock.cookie.aiStyling = checked; } StyledToolTip { - text: "Uses Gemini to categorize the wallpaper then picks a preset based on it.\nYou'll need to set Gemini API key on the left sidebar first.\nImages are downscaled for performance, but just to be safe,\ndo not select wallpapers with sensitive information." + text: Translation.tr("Uses Gemini to categorize the wallpaper then picks a preset based on it.\nYou'll need to set Gemini API key on the left sidebar first.\nImages are downscaled for performance, but just to be safe,\ndo not select wallpapers with sensitive information.") } } From 28078910a22e635392c19c877f70250edabbb211 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:11:34 +0200 Subject: [PATCH 12/30] adjust abstract wallpaper clock style --- .../ii/modules/background/cookieClock/CookieClock.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml index 317cfac11..dfb6e5f83 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml @@ -51,7 +51,7 @@ Item { print("[Cookie clock] Setting clock preset for category: " + category) // "abstract", "anime", "city", "minimalist", "landscape", "plants", "person", "space" if (category == "abstract") { - applyStyle(7, "dots", "fill", "medium", "dot", "bubble") + applyStyle(10, "dots", "fill", "medium", "dot", "bubble") } else if (category == "anime") { applyStyle(12, "dots", "fill", "bold", "dot", "bubble") } else if (category == "city" || category == "space") { From 2d2145a7800123b2e9aa0f84646af950209b9f48 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:11:58 +0200 Subject: [PATCH 13/30] bg clock: fix cursed bubble date --- .../cookieClock/dateIndicator/BubbleDate.qml | 18 +++++++++++------- .../dateIndicator/DateIndicator.qml | 4 ++-- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/BubbleDate.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/BubbleDate.qml index 3a86ccbbb..8f7f0286f 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/BubbleDate.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/BubbleDate.qml @@ -7,27 +7,31 @@ import qs.modules.common.widgets import QtQuick Item { - property int bubbleIndex: 0 + property bool isMonth: false property real targetSize: 0 + property alias text: bubbleText.text + + text: Qt.locale().toString(DateTime.clock.date, isMonth ? "MM" : "d") MaterialCookie { z: 5 - sides: bubbleIndex === 0 ? 4 : 1 + sides: isMonth ? 1 : 4 anchors.centerIn: parent - color: bubbleIndex === 0.0 ? Appearance.colors.colTertiaryContainer : Appearance.colors.colPrimaryContainer + color: isMonth ? Appearance.colors.colPrimaryContainer : Appearance.colors.colTertiaryContainer implicitSize: targetSize constantlyRotate: Config.options.background.clock.cookie.constantlyRotate } + StyledText { + id: bubbleText z: 6 anchors.centerIn: parent - text: bubbleIndex === 0.0 ? DateTime.date.substring(5, 7) : DateTime.date.substring(8, 10) - color: bubbleIndex === 0.0 ? Appearance.colors.colTertiary : Appearance.colors.colPrimary - opacity: root.style === "bubble" ? 1.0 : 0 + color: isMonth ? Appearance.colors.colPrimary : Appearance.colors.colTertiary + opacity: root.style === "bubble" ? 1 : 0 font { family: Appearance.font.family.expressive pixelSize: 30 - weight: 1000 + weight: Font.Black } Behavior on opacity { animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this) diff --git a/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/DateIndicator.qml b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/DateIndicator.qml index fb286418f..3f503659c 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/DateIndicator.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/dateIndicator/DateIndicator.qml @@ -53,7 +53,7 @@ Item { sourceComponent: BubbleDate { implicitWidth: dayBubbleLoader.targetSize implicitHeight: dayBubbleLoader.targetSize - bubbleIndex: 0 + isMonth: false targetSize: dayBubbleLoader.targetSize } } @@ -71,7 +71,7 @@ Item { sourceComponent: BubbleDate { implicitWidth: monthBubbleLoader.targetSize implicitHeight: monthBubbleLoader.targetSize - bubbleIndex: 1 + isMonth: true targetSize: monthBubbleLoader.targetSize } } From 971aaf3b98abda04c9d7ba01814ef9fb75bd9e4b Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:19:14 +0200 Subject: [PATCH 14/30] cookie clock: fix shadow not including date bubbles --- .../background/cookieClock/CookieClock.qml | 180 +++++++++--------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml index dfb6e5f83..2385bd075 100644 --- a/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/cookieClock/CookieClock.qml @@ -88,8 +88,8 @@ Item { source: cookie anchors.fill: source horizontalOffset: 0 - verticalOffset: 2 - radius: 12 + verticalOffset: 1 + radius: 8 samples: radius * 2 + 1 color: root.colShadow transparentBorder: true @@ -103,102 +103,102 @@ Item { sides: Config.options.background.clock.cookie.sides color: root.colBackground constantlyRotate: Config.options.background.clock.cookie.constantlyRotate - } - - // Hour/minutes numbers/dots/lines - MinuteMarks { - anchors.fill: parent - color: root.colOnBackground - } - - // Stupid extra hour marks in the middle - FadeLoader { - id: hourMarksLoader - anchors.centerIn: parent - shown: Config.options.background.clock.cookie.hourMarks - sourceComponent: HourMarks { - implicitSize: 135 * (1.75 - 0.75 * hourMarksLoader.opacity) - color: root.colOnBackground - colOnBackground: ColorUtils.mix(root.colBackgroundInfo, root.colOnBackground, 0.5) - } - } - - // Number column in the middle - FadeLoader { - id: timeColumnLoader - anchors.centerIn: parent - shown: Config.options.background.clock.cookie.timeIndicators - scale: 1.4 - 0.4 * timeColumnLoader.shown - Behavior on scale { - animation: Appearance.animation.elementResize.numberAnimation.createObject(this) - } - - sourceComponent: TimeColumn { - color: root.colBackgroundInfo - } - } - - // Hour hand - FadeLoader { - anchors.fill: parent - z: 1 - shown: Config.options.background.clock.cookie.hourHandStyle !== "hide" - sourceComponent: HourHand { - clockHour: root.clockHour - clockMinute: root.clockMinute - style: Config.options.background.clock.cookie.hourHandStyle - color: root.colHourHand - } - } - - // Minute hand - FadeLoader { - anchors.fill: parent - z: 2 - shown: Config.options.background.clock.cookie.minuteHandStyle !== "hide" - sourceComponent: MinuteHand { + + // Hour/minutes numbers/dots/lines + MinuteMarks { anchors.fill: parent - clockMinute: root.clockMinute - style: Config.options.background.clock.cookie.minuteHandStyle - color: root.colMinuteHand + color: root.colOnBackground } - } - // Second hand - FadeLoader { - id: secondHandLoader - z: (Config.options.background.clock.cookie.secondHandStyle === "line") ? 2 : 3 - shown: Config.options.time.secondPrecision && Config.options.background.clock.cookie.secondHandStyle !== "hide" - anchors.fill: parent - sourceComponent: SecondHand { - id: secondHand - clockSecond: root.clockSecond - style: Config.options.background.clock.cookie.secondHandStyle - color: root.colSecondHand + // Stupid extra hour marks in the middle + FadeLoader { + id: hourMarksLoader + anchors.centerIn: parent + shown: Config.options.background.clock.cookie.hourMarks + sourceComponent: HourMarks { + implicitSize: 135 * (1.75 - 0.75 * hourMarksLoader.opacity) + color: root.colOnBackground + colOnBackground: ColorUtils.mix(root.colBackgroundInfo, root.colOnBackground, 0.5) + } } - } - // Center dot - FadeLoader { - z: 4 - anchors.centerIn: parent - shown: Config.options.background.clock.cookie.minuteHandStyle !== "bold" - sourceComponent: Rectangle { - color: Config.options.background.clock.cookie.minuteHandStyle === "medium" ? root.colBackground : root.colMinuteHand - implicitWidth: 6 - implicitHeight: implicitWidth - radius: width / 2 + // Number column in the middle + FadeLoader { + id: timeColumnLoader + anchors.centerIn: parent + shown: Config.options.background.clock.cookie.timeIndicators + scale: 1.4 - 0.4 * timeColumnLoader.shown + Behavior on scale { + animation: Appearance.animation.elementResize.numberAnimation.createObject(this) + } + + sourceComponent: TimeColumn { + color: root.colBackgroundInfo + } } - } - // Date - FadeLoader { - anchors.fill: parent - shown: Config.options.background.clock.cookie.dateStyle !== "hide" + // Hour hand + FadeLoader { + anchors.fill: parent + z: 1 + shown: Config.options.background.clock.cookie.hourHandStyle !== "hide" + sourceComponent: HourHand { + clockHour: root.clockHour + clockMinute: root.clockMinute + style: Config.options.background.clock.cookie.hourHandStyle + color: root.colHourHand + } + } - sourceComponent: DateIndicator { - color: root.colBackgroundInfo - style: Config.options.background.clock.cookie.dateStyle + // Minute hand + FadeLoader { + anchors.fill: parent + z: 2 + shown: Config.options.background.clock.cookie.minuteHandStyle !== "hide" + sourceComponent: MinuteHand { + anchors.fill: parent + clockMinute: root.clockMinute + style: Config.options.background.clock.cookie.minuteHandStyle + color: root.colMinuteHand + } + } + + // Second hand + FadeLoader { + id: secondHandLoader + z: (Config.options.background.clock.cookie.secondHandStyle === "line") ? 2 : 3 + shown: Config.options.time.secondPrecision && Config.options.background.clock.cookie.secondHandStyle !== "hide" + anchors.fill: parent + sourceComponent: SecondHand { + id: secondHand + clockSecond: root.clockSecond + style: Config.options.background.clock.cookie.secondHandStyle + color: root.colSecondHand + } + } + + // Center dot + FadeLoader { + z: 4 + anchors.centerIn: parent + shown: Config.options.background.clock.cookie.minuteHandStyle !== "bold" + sourceComponent: Rectangle { + color: Config.options.background.clock.cookie.minuteHandStyle === "medium" ? root.colBackground : root.colMinuteHand + implicitWidth: 6 + implicitHeight: implicitWidth + radius: width / 2 + } + } + + // Date + FadeLoader { + anchors.fill: parent + shown: Config.options.background.clock.cookie.dateStyle !== "hide" + + sourceComponent: DateIndicator { + color: root.colBackgroundInfo + style: Config.options.background.clock.cookie.dateStyle + } } } } From afb14409c22376303503f0d92add9ce67ed66765 Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:08:17 +0300 Subject: [PATCH 15/30] chore: string syncing and translation --- .config/quickshell/translations/he_HE.json | 164 ++++++++++++++++----- 1 file changed, 129 insertions(+), 35 deletions(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 8297e0fce..9aa2b81e7 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -38,10 +38,8 @@ "Unfinished": "לא הושלם", "Add": "הוסף", "Nothing here!": "אין תזכורות", - "Center title": "כותרת במרכז", "Elements": "אלמנטים", "Color picker": "בוחר צבעים", - "Title bar": "שורת כותרת", "Sleep": "שינה", "Transparency": "שקיפות", "Bluetooth": "בלוטות׳", @@ -61,19 +59,15 @@ "Wind": "רוח", "Humidity": "לחות", "Select Language": "בחר שפה", - "Wallpaper": "טפט", "Copy code": "העתק קוד", "Allow NSFW": "הצג NSFW", - "Colors & Wallpaper": "צבעים וטפט", "Shutdown": "כיבוי", - "Decorations & Effects": "קישוטים ואפקטים", "Translation goes here...": "תרגום יגיע לכאן...", "Polling interval (ms)": "מרווח סקר (מילישניות)", "System prompt": "פרומפט מערכת", "Base URL": "כתובת בסיס", "Always show numbers": "הצג מספרים תמיד", "Wallpaper parallax": "אפקט parallax לטפט", - "Plain rectangle": "מלבן פשוט", "illogical-impulse Welcome": "ברוך הבא ל-illogical-impulse", "Local only": "מקומי בלבד", "Dark/Light toggle": "מצב כהה/בהיר", @@ -82,10 +76,8 @@ "Show app icons": "הצג אייקוני אפליקציות", "Useless buttons": "כפתורים מיותרים", "Scale (%)": "קנה מידה (%)", - "Show background": "הצג רקע", "Intelligence": "בינה מלאכותית", "Enable": "אפשר", - "Borderless": "ללא גבולות", "Random: Konachan": "אקראי: Konachan", "Yes": "כן", "Documentation": "תיעוד", @@ -94,7 +86,6 @@ "Report a Bug": "דווח על באג", "Sunset": "שקיעה", "Weeb": "אנימה", - "Shell windows": "חלונות", "Workspaces shown": "מספר שטחי עבודה מוצגים", "Screenshot tool": "כלי צילום מסך", "Enter text to translate...": "הכנס טקסט לתרגום", @@ -103,7 +94,6 @@ "Scroll to change brightness": "גלול לשינוי בהירות", "Privacy Policy": "מדיניות פרטיות", "12h AM/PM": "12 שעות (AM/PM)", - "Material palette": "פלטת צבעים", "No audio source": "אין מקור שמע", "Download": "הורד", "Prefixes": "קידומות", @@ -140,14 +130,11 @@ "Donate": "תרום", "Resources": "משאבים", "Float": "צף", - "Fake screen rounding": "עיגול מסך מזויף", "Hibernate": "שינה עמוקה", "Visibility": "ראות", "Delete": "מחק", - "Style": "סגנון", "Page %1": "עמוד %1", "Keyboard toggle": "מקלדת וירטואלית", - "Buttons": "כפתורים", "24h": "24 שעות", "Time": "שעה", "Clipboard": "לוח העתקה", @@ -165,7 +152,6 @@ "Not visible to model": "לא נראה למודל", "Local Ollama model | %1": "מודל Ollama מקומי | %1", "Open file link": "פתח קישור לקובץ", - "Waiting for response...": "ממתין לתשובה...", "Cheat sheet": "דף עזר", "Allow NSFW content": "אפשר תוכן NSFW", "%1 characters": "%1 תווים", @@ -180,8 +166,6 @@ "Color generation": "יצירת צבעים", "Temperature must be between 0 and 2": "ערך הטמפרטורה חייב להיות בין 0 ל-2", "Earbang protection": "הגנת אוזניים", - "Alternatively use /dark, /light, /img in the launcher": "באופן חלופי השתמש /dark, /light, /img במנוע", - "Change any time later with /dark, /light, /img in the launcher": "שנה בכל זמן עם /dark, /light, /img במנוע", "Current model: %1\nSet it with %2model MODEL": "מודל נוכחי: %1\nשנה עם %2model", "Waifus only | Excellent quality, limited quantity": "וואייפוס בלבד | איכות מעולה, כמות מוגבלת", "Save to Downloads": "שמור בהורדות", @@ -195,7 +179,6 @@ "Prevents abrupt increments and restricts volume limit": "מונע עליות חדות ומגביל עוצמת קול", "Preferred wallpaper zoom (%)": "זום טפט מועדף (%)", "Depends on workspace": "תלוי במקום העבודה", - "Note: turning off can hurt readability": "הערה: כיבוי עלול לפגוע בקריאות", "Pick wallpaper image on your system": "בחר טפט מהמחשב", "Invalid API provider. Supported: \n-": "ספק API לא חוקי. נתמכים: \n-", "The hentai one | Great quantity, a lot of NSFW, quality varies wildly": "הנטאי | כמות רבה, NSFW, איכות משתנה", @@ -218,9 +201,7 @@ "Refreshing (manually triggered)": "מרענן (הופעל ידנית)", "Kill conflicting programs?": "להפסיק תוכנות מתנגשות?", "System uptime:": "משך זמן פעילות המערכת:", - "Place at the bottom/right": "הצב בתחתית/ימין", "Monochrome": "מונוכרום", - "Bar layout": "פריסת סרגל", "Issues": "בעיות", "Online | Google's model\nNewer model that's slower than its predecessor but should deliver higher quality answers": "מקוון | מודל של גוגל\nמודל חדש יותר, איטי יותר מקודמו אך אמור לספק תשובות איכותיות יותר", "Temperature set to %1": "הטמפרטורה הוגדרה ל-%1", @@ -230,7 +211,6 @@ "Set the tool to use for the model.": "הגדר את הכלי לשימוש עבור המודל.", "Cannot find a GPS service. Using the fallback method instead.": "לא נמצא שירות GPS. משתמש בשיטה חלופית.", "API key:\n\n```txt\n%1\n```": "מפתח API:\n\n```txt\n%1\n```", - "Friday": "יום שישי", "Large images | God tier quality, no NSFW.": "תמונות גדולות | איכות גבוהה מאוד, ללא NSFW.", "Language": "שפה", "Weather Service": "שירות מזג אוויר", @@ -243,7 +223,6 @@ "The current system prompt is\n\n---\n\n%1": "הפרומפט הנוכחי של המערכת הוא\n\n---\n\n%1", "Save chat": "שמור שיחה", "Conflicts with the shell's notification implementation": "מתנגש עם מימוש ההתראות של ה-shell", - "Saturday": "יום שבת", "Critically low battery": "סוללה נמוכה מאוד", "Shell conflicts killer": "מנטרל התנגשויות shell", "Number show delay when pressing Super (ms)": "השהיית הצגת מספרים בלחיצת Super (מילישניות)", @@ -252,7 +231,6 @@ "☕ Break: %1 minutes": "☕ הפסקה: %1 דקות", ". Notes for Zerochan:\n- You must enter a color\n- Set your zerochan username in `sidebar.booru.zerochan.username` config option. You [might be banned for not doing so](https://www.zerochan.net/api#:~:text=The%20request%20may%20still%20be%20completed%20successfully%20without%20this%20custom%20header%2C%20but%20your%20project%20may%20be%20banned%20for%20being%20anonymous.)!": ". הערות ל-Zerochan:\n- חובה להזין צבע\n- הגדר את שם המשתמש שלך ב-zerochan באופציית הקונפיג `sidebar.booru.zerochan.username`. ייתכן שתחסם אם לא תעשה זאת!", "Used:": "בשימוש:", - "Suspend at": "השהה ב-", "Hi there! First things first...": "שלום! קודם כל...", "Registration failed. Please inspect manually with the warp-cli command": "ההרשמה נכשלה. נא לבדוק ידנית עם הפקודה warp-cli", "Usage": "שימוש", @@ -300,7 +278,6 @@ "Anime": "אנימה", "Online models disallowed\n\nControlled by `policies.ai` config option": "מודלים מקוונים אינם מותרים\n\nנשלט על ידי אפשרות הקונפיג `policies.ai`", "Thought": "מחשבה", - "Wednesday": "יום רביעי", "GitHub": "גיטהאב", "Clear chat history": "נקה היסטוריית שיחות", "Resume": "המשך", @@ -321,9 +298,7 @@ "Break": "הפסקה", "App": "אפליקציה", "Temperature\nChange with /temp VALUE": "טמפרטורה\nשנה עם /temp VALUE", - "Horizontal": "אופקי", "Unknown command:": "פקודה לא ידועה:", - "Language setting saved. Please restart Quickshell (Ctrl+Super+R) to apply the new language.": "הגדרת השפה נשמרה. נא להפעיל מחדש את Quickshell (Ctrl+Super+R) כדי להחיל את השפה החדשה.", "There might be a download in progress": "ייתכן שיש הורדה בתהליך", "Go to source (%1)": "עבור למקור (%1)", "Networking": "רשת", @@ -343,7 +318,6 @@ "Choose model": "בחר מודל", "Large language models": "מודלי שפה גדולים", "%1 Safe Storage": "%1 אחסון בטוח", - "Deadline": "דדליין", "No API key\nSet it with /key YOUR_API_KEY": "אין מפתח API\nהגדר אותו עם /key YOUR_API_KEY", "Logout": "התנתק", "Clean stuff | Excellent quality, no NSFW": "תמונות נקיות | איכות מעולה, ללא NSFW", @@ -353,7 +327,6 @@ "Output": "פלט", "**Instructions**: Log into Mistral account, go to Keys on the sidebar, click Create new key": "**הוראות**: התחבר לחשבון Mistral, עבור ל-Keys בסרגל הצד, לחץ על Create new key", "Unknown function call: %1": "קריאת פונקציה לא ידועה: %1", - "Sunday": "יום ראשון", "Interface Language": "שפת ממשק", "Fully charged": "טעון במלואו", "Free:": "פנוי:", @@ -368,21 +341,15 @@ "Hover to trigger": "עבור עםְ העכבר להפעלה", "Enjoy! You can reopen the welcome app any time with Super+Shift+Alt+/. To open the settings app, hit Super+I": "תהנה! תוכל לפתוח מחדש את אפליקציית הברוכים הבאים בכל עת עם Super+Shift+Alt+/. כדי לפתוח את אפליקציית ההגדרות, לחץ Super+I", "Timeout (ms)": "פסק זמן (מילישניות)", - "Monday": "יום שני", - "Tuesday": "יום שלישי", "Such regions could be images or parts of the screen that have some containment.\nMight not always be accurate.\nThis is done with an image processing algorithm run locally and no AI is used.": "אזורים כאלה יכולים להיות תמונות או חלקים מהמסך שיש בהם תוכן.\nייתכן שלא תמיד יהיה מדויק. זה נעשה עם אלגוריתם עיבוד תמונה מקומי וללא שימוש בבינה מלאכותית.", "Long break": "הפסקה ארוכה", "Arrow keys to navigate, Enter to select\nEsc or click anywhere to cancel": "מקשי החצים לניווט, Enter לבחירה\nEsc או לחיצה בכל מקום לביטול", "Load prompt from %1": "טען פרומפט מ-%1", "That didn't work. Tips:\n- Check your tags and NSFW settings\n- If you don't have a tag in mind, type a page number": "זה לא עבד. טיפים:\n- בדוק את התגיות והגדרות NSFW\n- אם אין לך תגית, הקלד מספר עמוד", - "Tip: Hide icons and always show numbers for\nthe classic illogical-impulse experience": "טיפ: הסתר אייקונים והצג תמיד מספרים לחוויית illogical-impulse הקלאסית", "Corner open": "פינה פתוחה", - "Select Deadline": "בחר דדליין", - "Overall appearance": "מראה כללי", "Disable tools": "השבת כלים", "Reject": "דחה", "Visualize region": "הדמיית אזור", - "Thursday": "יום חמישי", "**Pricing**: Free tier available with limited rates. See https://docs.github.com/en/billing/concepts/product-billing/github-models\n\n**Instructions**: Generate a GitHub personal access token with Models permission, then set as API key here\n\n**Note**: To use this you will have to set the temperature parameter to 1": "**מחיר**: יש פרופיל חינם עם תקצב מוגבל. ראה https://docs.github.com/en/billing/concepts/product-billing/github-models\n\n**הוראות**: צור אסימון גישה אישי ב-GitHub עם הרשאת Models, ואז הגדר אותו כאן כמפתח API\n\n**הערה**: כדי להשתמש בזה תצטרך להגדיר את פרמטר הטמפרטורה ל-1", "Select the language for the user interface.\n\"Auto\" will use your system's locale.": "בחר את השפה לממשק המשתמש. \"אוטומטי\" ישתמש בשפת המערכת שלך.", "Automatically suspends the system when battery is low": "משהה אוטומטית את המערכת כאשר הסוללה נמוכה", @@ -392,7 +359,6 @@ "Fidelity": "דיוק", "Load chat": "טען שיחה", "All-rounder | Good quality, decent quantity": "כללי | איכות טובה, כמות אדירה", - "TimeTable": "לוח זמנים", "Info": "מידע", "Corner style": "סגנון פינות", "Online | Google's model\nFast, can perform searches for up-to-date information": "מקוון | מודל של גוגל\nמהיר, יכול לבצע חיפושים למידע עדכני", @@ -407,5 +373,133 @@ "🔴 Focus: %1 minutes": "🔴 פוקוס: %1 דקות", "Set API key": "הגדר מפתח API", "Load chat from %1": "טען שיחה מ-%1", - "Code saved to file": "הקוד נשמר לקובץ" + "Code saved to file": "הקוד נשמר לקובץ", + "Show clock": "הצגת שעון", + "Use the system file picker instead\nRight-click to make this the default behavior": "השתמש בבוחר הקבצים של המערכת במקום\nלחיצה ימנית תהפוך את התנהגות זו לברירת המחדל", + "Hour marks": "סימוני שעה", + "Unread indicator: show count": "מתריע על אי-קריאה: הצגת כמות", + "Cookie clock settings": "הגדרות שעון עוגיה", + "Not all options are available in this app. You should also check the config file by hitting the \"Config file\" button on the topleft corner or opening %1 manually.": "לא כל האפשרויות נמצאות באפליקציה הזו. מומלץ לבדוק את קובץ ההגדרות על ידי לחיצה על הכפתור \"קובץ הגדרות\" הממוקם למעלה בפינה השמאלית. ניתן גם לפתוח את %1 באופן ידני.", + "Border": "גבול", + "Classic": "קלאסי", + "Connected": "מחובר", + "Hit \"/\" to search": "לחץ \"/\" לחיפוש", + "Wallpaper & Colors": "רקע וצבעים", + "Change any time later with /dark, /light, /wallpaper in the launcher\nIf the shell's colors aren't changing:\n 1. Open the right sidebar with Super+N\n 2. Click \"Reload Hyprland & Quickshell\" in the top-right corner": "Change any time later with /dark, /light, /wallpaper in the launcher\nIf the shell's colors aren't changing:\n 1. Open the right sidebar with Super+N\n 2. Click \"Reload Hyprland & Quickshell\" in the top-right corner", + "Launch on startup": "Launch on startup", + "Terminal: Harmonize threshold": "טרמינל: Harmonize threshold", + "Quick": "מהיר", + "Pills": "גלולות", + "Terminal: Harmony (%)": "טרמינל: הרמוניה (%)", + "Bar position": "מיקום הסרגל", + "Connect to Wi-Fi": "התחבר ל-WiFi", + "Force dark mode in terminal": "כפה על מצב כהה בטרמינל", + "Wallpaper safety enforced": "בטיחות הרקע נאכפה", + "Click to toggle light/dark mode\n(applied when wallpaper is chosen)": "לחץ לשינוי בין מצב בהיר/כהה\n(מיושם לאחר בחירת רקע)", + "Dots": "Dots", + "Minute hand": "מחוג הדקות", + "Open editor": "פתח עורך", + "This is usually safe and needed for your browser and AI sidebar anyway\nMostly useful for those who use lock on startup instead of a display manager that does it (GDM, SDDM, etc.)": "This is usually safe and needed for your browser and AI sidebar anyway\nMostly useful for those who use lock on startup instead of a display manager that does it (GDM, SDDM, etc.)", + "Security": "בטיחות", + "Work safety": "בטיחות עבודה", + "Bar & screen": "סרגל ומסך", + "Crosshair overlay": "Crosshair overlay", + "Make sure your player has MPRIS support\nor try turning off duplicate player filtering": "וודא שהנגן שלך תומך ב-MPRIS\nאו נסה לכבות סינון נגנים כפולים", + "Bottom": "מטה", + "Press Super+G to toggle appearance": "לחץ סופר+G לתצוגה או הסתרה", + "Thin": "דק", + "Sides": "צדדים", + "Hollow": "חלול", + "Usage: %1superpaste NUM_OF_ENTRIES[i]\nSupply i when you want images\nExamples:\n%1superpaste 4i for the last 4 images\n%1superpaste 7 for the last 7 entries": "Usage: %1superpaste NUM_OF_ENTRIES[i]\nSupply i when you want images\nExamples:\n%1superpaste 4i for the last 4 images\n%1superpaste 7 for the last 7 entries", + "Center clock": "מרכוז השעון", + "Tip: Close a window with Super+Q": "Tip: Close a window with Super+Q", + "Clock style": "סגנון השעון", + "Right": "ימינה", + "Exceeded max allowed": "חריגה מהמקסימום המותר", + "Bold": "מודגש", + "Group style": "סגנון קבוצה", + "Numbers": "מספרים", + "Disconnect": "התנתקות", + "Ignored if terminal theming is not enabled": "Ignored if terminal theming is not enabled", + "Dial style": "סגנון חוגה", + "Auto styling with Gemini": "עיצוב אוטומטי עם Gemini", + "Screen round corner": "עיגול פינות מסך", + "When this is off you'll have to click": "When this is off you'll have to click", + "Paired": "מחובר", + "Details": "פרטים", + "Crosshair code (in Valorant's format)": "Crosshair code (in Valorant's format)", + "Positioning": "מיקום", + "Also unlock keyring": "פתח גם את שרשרת המפתחות (keyring)", + "Make icons pinned by default": "הצמד אייקונים כברירת מחדל", + "Background": "רקע", + "Random osu! seasonal background\nImage is saved to ~/Pictures/Wallpapers": "רקע osu! עונתי רנדומלי\nהתמונה נשמרת ב- ~/Pictures/Wallpapers", + "Cancel wallpaper selection": "בטל בחירת רקע", + "Enable if you want clocks to show seconds accurately": "הפעל כדי שהשעון יראה שניות במדויק", + "at": "ב", + "Quote settings": "הגדרות ציטוט", + "Timeout duration (if not defined by notification) (ms)": "משך זמן (אם לא מוגדר על ידי ההתראה) (באלפיות השנייה)", + "Connect": "התחבר", + "Digits in the middle": "ספרות באמצע", + "Rect": "מלבן", + "Unknown device": "מכשיר לא ידוע", + "Back": "אחורה", + "General": "כללי", + "Bluetooth devices": "מכשירי Bluetooth", + "Bubble": "בועה", + "Hour hand": "מחוג השעות", + "Enable translator": "הפעלת מתרגם", + "Utility buttons": "כפתורי תועלת", + "Value scroll": "ערך גלילה", + "Remember that on most devices one can always hold the power button to force shutdown\nThis only makes it a tiny bit harder for accidents to happen": "Remember that on most devices one can always hold the power button to force shutdown\nThis only makes it a tiny bit harder for accidents to happen", + "Material cookie": "עוגיה", + "Locked": "נעול", + "Left": "שמאלה", + "Place at bottom": "מקם למטה", + "Lock screen": "מסך נעילה", + "Show \"Locked\" text": "הצג את הטקסט \"נעול\"", + "Open network portal": "פתח את פורטל הרשת", + "No active player": "אין נגן פעיל", + "Simple digital": "דיגיטלי פשוט", + "Tip: right-clicking a group\nalso expands it": "Tip: right-clicking a group\nalso expands it", + "Pick random from this folder": "בחר באקראיות מהתיקייה", + "Illegal increment": "הוספה לא חוקית", + "Style: Blurred": "סגנון: חיבור", + "Full": "מלא", + "Style: general": "סגנון: כללי", + "Use Hyprlock (instead of Quickshell)": "השתמש ב-Hyprlock (במקום ב-Quickshell)", + "Top": "מעלה", + "Random: osu! seasonal": "רנדומלי: osu! עונתי", + "Require password to power off/restart": "דרוש סיסמה לכיבוי/הפעלה מחדש", + "Fill": "מלא", + "Constantly rotate": "הסתובב לעד", + "Forget": "שכח", + "Pick a wallpaper": "בחירת רקע", + "Show quote": "הצג ציטוט", + "Line-separated": "הפרדת קו", + "Shell command": "פקודת של (shell)", + "Extra wallpaper zoom (%)": "הגדלת רקע (%)", + "Search wallpapers": "חיפוש רקעים", + "Bar style": "סגנון הסרגל", + "Dot": "נקודה", + "Second precision": "דיוק בשנייה", + "Line": "קו", + "Place the corners to trigger at the bottom": "Place the corners to trigger at the bottom", + "Second hand": "מחוג השניות", + "Math": "מתמטיקה", + "Edit directory": "ערוך תיקייה", + "Password": "סיסמה", + "Terminal: Foreground boost (%)": "Terminal: Foreground boost (%)", + "If you want to somehow use fingerprint unlock...": "אם תרצה איכשהו לפתוח בעזרת טביעת אצבע...", + "Superpaste": "Superpaste", + "Date style": "סגנון תאריך", + "Enable blur": "הפעל טשטוש", + "Brightness and volume": "בהירות ועוצמת שמע", + "Quote": "ציטוט", + "Mo": "Mo/*keep*/", + "Su": "Su/*keep*/", + "Sa": "Sa/*keep*/", + "Fr": "Fr/*keep*/", + "Tu": "Tu/*keep*/", + "Th": "Th/*keep*/", + "We": "We/*keep*/" } From 769ad737373d22e12ebbac89bfb25be6f518c6bc Mon Sep 17 00:00:00 2001 From: ew <53885068+izumisagirii@users.noreply.github.com> Date: Mon, 13 Oct 2025 22:33:08 +0800 Subject: [PATCH 16/30] Handle empty search in fuzzyQuery function Add check for empty search string in fuzzyQuery function. --- .config/quickshell/ii/services/Cliphist.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/quickshell/ii/services/Cliphist.qml b/.config/quickshell/ii/services/Cliphist.qml index 568526c12..615e949fb 100644 --- a/.config/quickshell/ii/services/Cliphist.qml +++ b/.config/quickshell/ii/services/Cliphist.qml @@ -21,6 +21,9 @@ Singleton { entry: a })) function fuzzyQuery(search: string): var { + if (search.trim() === "") { + return entries; + } if (root.sloppySearch) { const results = entries.slice(0, 100).map(str => ({ entry: str, From e67d8e9c81ae0db422417059b9a0cb2b855d3d75 Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:36:22 +0300 Subject: [PATCH 17/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 9aa2b81e7..5aa995f6c 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -385,7 +385,7 @@ "Connected": "מחובר", "Hit \"/\" to search": "לחץ \"/\" לחיפוש", "Wallpaper & Colors": "רקע וצבעים", - "Change any time later with /dark, /light, /wallpaper in the launcher\nIf the shell's colors aren't changing:\n 1. Open the right sidebar with Super+N\n 2. Click \"Reload Hyprland & Quickshell\" in the top-right corner": "Change any time later with /dark, /light, /wallpaper in the launcher\nIf the shell's colors aren't changing:\n 1. Open the right sidebar with Super+N\n 2. Click \"Reload Hyprland & Quickshell\" in the top-right corner", + "Change any time later with /dark, /light, /wallpaper in the launcher\nIf the shell's colors aren't changing:\n 1. Open the right sidebar with Super+N\n 2. Click \"Reload Hyprland & Quickshell\" in the top-right corner": "ניתן לשנות בכל עת עם /dark, /light, /wallpaper במפעיל\nאם צבעי ה-shell לא משתנים:\n 1. פתח את הסרגל הצדדי הימני עם Super+N\n 2. לחץ על \"טען מחדש Hyprland & Quickshell\" בפינה הימנית העליונה", "Launch on startup": "Launch on startup", "Terminal: Harmonize threshold": "טרמינל: Harmonize threshold", "Quick": "מהיר", From 8621b3f6ff86361a972491be9812601ac2842adf Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:36:30 +0300 Subject: [PATCH 18/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 5aa995f6c..b0ec4266c 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -386,7 +386,7 @@ "Hit \"/\" to search": "לחץ \"/\" לחיפוש", "Wallpaper & Colors": "רקע וצבעים", "Change any time later with /dark, /light, /wallpaper in the launcher\nIf the shell's colors aren't changing:\n 1. Open the right sidebar with Super+N\n 2. Click \"Reload Hyprland & Quickshell\" in the top-right corner": "ניתן לשנות בכל עת עם /dark, /light, /wallpaper במפעיל\nאם צבעי ה-shell לא משתנים:\n 1. פתח את הסרגל הצדדי הימני עם Super+N\n 2. לחץ על \"טען מחדש Hyprland & Quickshell\" בפינה הימנית העליונה", - "Launch on startup": "Launch on startup", + "Launch on startup": "הפעל בעת הפעלה", "Terminal: Harmonize threshold": "טרמינל: Harmonize threshold", "Quick": "מהיר", "Pills": "גלולות", From badc1249c0119b5734ee7eacffae457232922764 Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:36:38 +0300 Subject: [PATCH 19/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index b0ec4266c..97c994844 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -399,7 +399,7 @@ "Dots": "Dots", "Minute hand": "מחוג הדקות", "Open editor": "פתח עורך", - "This is usually safe and needed for your browser and AI sidebar anyway\nMostly useful for those who use lock on startup instead of a display manager that does it (GDM, SDDM, etc.)": "This is usually safe and needed for your browser and AI sidebar anyway\nMostly useful for those who use lock on startup instead of a display manager that does it (GDM, SDDM, etc.)", + "This is usually safe and needed for your browser and AI sidebar anyway\nMostly useful for those who use lock on startup instead of a display manager that does it (GDM, SDDM, etc.)": "זה בדרך כלל בטוח ונדרש עבור הדפדפן שלך וסרגל הצד של הבינה המלאכותית.\nבעיקר שימושי עבור מי שמשתמש בנעילה בעת ההפעלה במקום מנהל תצוגה שעושה זאת (GDM, SDDM וכו').", "Security": "בטיחות", "Work safety": "בטיחות עבודה", "Bar & screen": "סרגל ומסך", From 1b44b27142b5eeaaa7f36e91eda0df0dd3652808 Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:36:44 +0300 Subject: [PATCH 20/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 97c994844..a757d54f5 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -410,7 +410,7 @@ "Thin": "דק", "Sides": "צדדים", "Hollow": "חלול", - "Usage: %1superpaste NUM_OF_ENTRIES[i]\nSupply i when you want images\nExamples:\n%1superpaste 4i for the last 4 images\n%1superpaste 7 for the last 7 entries": "Usage: %1superpaste NUM_OF_ENTRIES[i]\nSupply i when you want images\nExamples:\n%1superpaste 4i for the last 4 images\n%1superpaste 7 for the last 7 entries", + "Usage: %1superpaste NUM_OF_ENTRIES[i]\nSupply i when you want images\nExamples:\n%1superpaste 4i for the last 4 images\n%1superpaste 7 for the last 7 entries": "שימוש: %1superpaste NUM_OF_ENTRIES[i]\nהוסף i כאשר תרצה תמונות\nדוגמאות:\n%1superpaste 4i עבור 4 התמונות האחרונות\n%1superpaste 7 עבור 7 הערכים האחרונים", "Center clock": "מרכוז השעון", "Tip: Close a window with Super+Q": "Tip: Close a window with Super+Q", "Clock style": "סגנון השעון", From 30f2db1e4d02065af20d85ab2c09493345e155c4 Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:36:50 +0300 Subject: [PATCH 21/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index a757d54f5..507429ae6 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -412,7 +412,7 @@ "Hollow": "חלול", "Usage: %1superpaste NUM_OF_ENTRIES[i]\nSupply i when you want images\nExamples:\n%1superpaste 4i for the last 4 images\n%1superpaste 7 for the last 7 entries": "שימוש: %1superpaste NUM_OF_ENTRIES[i]\nהוסף i כאשר תרצה תמונות\nדוגמאות:\n%1superpaste 4i עבור 4 התמונות האחרונות\n%1superpaste 7 עבור 7 הערכים האחרונים", "Center clock": "מרכוז השעון", - "Tip: Close a window with Super+Q": "Tip: Close a window with Super+Q", + "Tip: Close a window with Super+Q": "טיפ: סגור חלון עם Super+Q", "Clock style": "סגנון השעון", "Right": "ימינה", "Exceeded max allowed": "חריגה מהמקסימום המותר", From 2ffec8014a7fa5057a0ae5a8cb15488ae8b6e012 Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:36:56 +0300 Subject: [PATCH 22/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 507429ae6..5c48a96c9 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -424,7 +424,7 @@ "Dial style": "סגנון חוגה", "Auto styling with Gemini": "עיצוב אוטומטי עם Gemini", "Screen round corner": "עיגול פינות מסך", - "When this is off you'll have to click": "When this is off you'll have to click", + "When this is off you'll have to click": "כאשר אפשרות זו כבויה, תצטרך ללחוץ", "Paired": "מחובר", "Details": "פרטים", "Crosshair code (in Valorant's format)": "Crosshair code (in Valorant's format)", From 2b78225114d7f4bad40d1244cdc3eb3fe6976a7b Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:37:01 +0300 Subject: [PATCH 23/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 5c48a96c9..7942b852d 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -427,7 +427,7 @@ "When this is off you'll have to click": "כאשר אפשרות זו כבויה, תצטרך ללחוץ", "Paired": "מחובר", "Details": "פרטים", - "Crosshair code (in Valorant's format)": "Crosshair code (in Valorant's format)", + "Crosshair code (in Valorant's format)": "קוד כוונת (בפורמט של Valorant)", "Positioning": "מיקום", "Also unlock keyring": "פתח גם את שרשרת המפתחות (keyring)", "Make icons pinned by default": "הצמד אייקונים כברירת מחדל", From cec8dc991c23f99c656f72194f1594ea7998ef1d Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:37:07 +0300 Subject: [PATCH 24/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 7942b852d..e1164969c 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -450,7 +450,7 @@ "Enable translator": "הפעלת מתרגם", "Utility buttons": "כפתורי תועלת", "Value scroll": "ערך גלילה", - "Remember that on most devices one can always hold the power button to force shutdown\nThis only makes it a tiny bit harder for accidents to happen": "Remember that on most devices one can always hold the power button to force shutdown\nThis only makes it a tiny bit harder for accidents to happen", + "Remember that on most devices one can always hold the power button to force shutdown\nThis only makes it a tiny bit harder for accidents to happen": "זכור כי ברוב המכשירים תמיד ניתן להחזיק את כפתור ההפעלה כדי לכבות בכוח\nזה רק מקשה מעט על טעויות מקריות לקרות", "Material cookie": "עוגיה", "Locked": "נעול", "Left": "שמאלה", From fa99a0b3c8f7680b9ad00b6f326a05b81a3633cc Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:37:13 +0300 Subject: [PATCH 25/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index e1164969c..a2ae602d7 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -460,7 +460,7 @@ "Open network portal": "פתח את פורטל הרשת", "No active player": "אין נגן פעיל", "Simple digital": "דיגיטלי פשוט", - "Tip: right-clicking a group\nalso expands it": "Tip: right-clicking a group\nalso expands it", + "Tip: right-clicking a group\nalso expands it": "טיפ: לחיצה ימנית על קבוצה\nמרחיבה אותה גם כן", "Pick random from this folder": "בחר באקראיות מהתיקייה", "Illegal increment": "הוספה לא חוקית", "Style: Blurred": "סגנון: חיבור", From 7c01257cddbeb8605e4a7a8d97bc562c6029386a Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:37:19 +0300 Subject: [PATCH 26/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index a2ae602d7..2365a8896 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -483,7 +483,7 @@ "Dot": "נקודה", "Second precision": "דיוק בשנייה", "Line": "קו", - "Place the corners to trigger at the bottom": "Place the corners to trigger at the bottom", + "Place the corners to trigger at the bottom": "מקם את הפינות להפעלה בתחתית", "Second hand": "מחוג השניות", "Math": "מתמטיקה", "Edit directory": "ערוך תיקייה", From 6a9fd049898ead444ff91925a09a455cdb0f876e Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:37:29 +0300 Subject: [PATCH 27/30] Update .config/quickshell/translations/he_HE.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index 2365a8896..f652ec245 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -420,7 +420,7 @@ "Group style": "סגנון קבוצה", "Numbers": "מספרים", "Disconnect": "התנתקות", - "Ignored if terminal theming is not enabled": "Ignored if terminal theming is not enabled", + "Ignored if terminal theming is not enabled": "מתעלם אם ערכת נושא לטרמינל אינה מופעלת", "Dial style": "סגנון חוגה", "Auto styling with Gemini": "עיצוב אוטומטי עם Gemini", "Screen round corner": "עיגול פינות מסך", From dc149d26360491a16827d943504c990e5be9fb8e Mon Sep 17 00:00:00 2001 From: TheAnnoying <81178023+TheAnnoying@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:40:05 +0300 Subject: [PATCH 28/30] Update he_HE.json --- .config/quickshell/translations/he_HE.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/translations/he_HE.json b/.config/quickshell/translations/he_HE.json index f652ec245..082adfd1f 100644 --- a/.config/quickshell/translations/he_HE.json +++ b/.config/quickshell/translations/he_HE.json @@ -403,7 +403,7 @@ "Security": "בטיחות", "Work safety": "בטיחות עבודה", "Bar & screen": "סרגל ומסך", - "Crosshair overlay": "Crosshair overlay", + "Crosshair overlay": "שכבת כוונת", "Make sure your player has MPRIS support\nor try turning off duplicate player filtering": "וודא שהנגן שלך תומך ב-MPRIS\nאו נסה לכבות סינון נגנים כפולים", "Bottom": "מטה", "Press Super+G to toggle appearance": "לחץ סופר+G לתצוגה או הסתרה", From 6cc96d094d3fe1141ead5d375685570e45d29f39 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:29:33 +0200 Subject: [PATCH 29/30] update work safety file keyword list --- .config/quickshell/ii/modules/common/Config.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index 7602165b6..7c34c54d8 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -431,7 +431,7 @@ Singleton { } property JsonObject triggerCondition: JsonObject { property list networkNameKeywords: ["airport", "cafe", "college", "company", "eduroam", "free", "guest", "public", "school", "university"] - property list fileKeywords: ["anime", "ecchi", "hentai", "yande.re", "konachan", "breast", "nipples", "pussy", "nsfw", "spoiler", "girl"] + property list fileKeywords: ["anime", "booru", "ecchi", "hentai", "yande.re", "konachan", "breast", "nipples", "pussy", "nsfw", "spoiler", "girl"] property list linkKeywords: ["hentai", "porn", "sukebei", "hitomi.la", "rule34", "gelbooru", "fanbox", "dlsite"] } } From 50e73d4a3accddeec3fab782cdc0f36b84bc3ee6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:35:08 +0200 Subject: [PATCH 30/30] set config read/write delay to 0 where delay is unnecessary --- .config/quickshell/ii/killDialog.qml | 2 +- .config/quickshell/ii/modules/common/Config.qml | 5 +++-- .config/quickshell/ii/settings.qml | 1 + .config/quickshell/ii/welcome.qml | 1 + 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/ii/killDialog.qml b/.config/quickshell/ii/killDialog.qml index fdccfe807..62f1a4a71 100644 --- a/.config/quickshell/ii/killDialog.qml +++ b/.config/quickshell/ii/killDialog.qml @@ -36,7 +36,7 @@ ApplicationWindow { title: Translation.tr("Shell conflicts killer") Component.onCompleted: { - Config.ready // Just read to force init + Config.readWriteDelay = 0; MaterialThemeLoader.reapplyTheme(); } diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index 7c34c54d8..7d5250258 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -9,6 +9,7 @@ Singleton { property string filePath: Directories.shellConfigPath property alias options: configOptionsJsonAdapter property bool ready: false + property int readWriteDelay: 50 // milliseconds function setNestedValue(nestedKey, value) { let keys = nestedKey.split("."); @@ -42,7 +43,7 @@ Singleton { Timer { id: fileReloadTimer - interval: 50 + interval: root.readWriteDelay repeat: false onTriggered: { configFileView.reload() @@ -51,7 +52,7 @@ Singleton { Timer { id: fileWriteTimer - interval: 50 + interval: root.readWriteDelay repeat: false onTriggered: { configFileView.writeAdapter() diff --git a/.config/quickshell/ii/settings.qml b/.config/quickshell/ii/settings.qml index 2b5978ec9..61f51d47f 100644 --- a/.config/quickshell/ii/settings.qml +++ b/.config/quickshell/ii/settings.qml @@ -69,6 +69,7 @@ ApplicationWindow { Component.onCompleted: { MaterialThemeLoader.reapplyTheme() + Config.readWriteDelay = 0 // Settings app always only sets one var at a time so delay isn't needed } minimumWidth: 750 diff --git a/.config/quickshell/ii/welcome.qml b/.config/quickshell/ii/welcome.qml index 4acd2c80b..84d6b8170 100644 --- a/.config/quickshell/ii/welcome.qml +++ b/.config/quickshell/ii/welcome.qml @@ -33,6 +33,7 @@ ApplicationWindow { Component.onCompleted: { MaterialThemeLoader.reapplyTheme(); + Config.readWriteDelay = 0 // Welcome app always only sets one var at a time so delay isn't needed } minimumWidth: 600