From 1b1d7ab74dc7e2c44577a0ca2ae7d00654294006 Mon Sep 17 00:00:00 2001 From: Alan A2N Bouteiller Date: Tue, 7 Nov 2023 12:16:15 +0100 Subject: [PATCH 1/3] add desc --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4547368..dac61dd 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ ![screenshot of the aplet with all the alt](git-assets/img/v4.2.0/all-alt.png) +1 - dot w/ custom color | 2 - dot with theme color | 3 - label | 4 - label with separator | 5 - in the system tray + ## Description Counts the number of *aur* and *arch* update available (so all the db - extra, core, aur, ...). From 7c87caafa44632ca51369054fcc9937b47a81550 Mon Sep 17 00:00:00 2001 From: Alan A2N Bouteiller Date: Tue, 7 Nov 2023 12:19:01 +0100 Subject: [PATCH 2/3] md bug --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dac61dd..d626b49 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ Go to the 'System Tray Settings' menu and activate it :) | Interval configuration | set the interval between each execution of the update check function | the `updater` is launch each X minutes | | Debug | Enable the debug mode if set to true | Show each command launch by the plasmoid with `ARCHUPDATE` at the beggining (for regex search) | | Do not close the terminal at the end | if true add the `--noclose` flag into the `konsole` command | Prevent the console to close at the end of the update command | -| Count ARCH command | The command you want to execute for counting the packages for CORE and EXTRA (default: `checkupdates | wc -l`) | `updater` exec this command | -| Count AUR command | The command you want to execute for counting the packages for the other db (default: `yay -Qua | wc -l`) | `updater` exec this command | +| Count ARCH command | The command you want to execute for counting the packages for CORE and EXTRA (default: `checkupdates | wc -l`) | The `updater` exec this command | +| Count AUR command | The command you want to execute for counting the packages for the other db (default: `yay -Qua | wc -l`) | The `updater` exec this command | | Update command | The command you want to execute when the `update` action is called | Pass the command to `konsole -e` | | Show a dot in place of the label | Replace the label with a colored dot | If the total count is > than 0 the dot is visible, otherwise nothing is shown (no label, no dot) | | Custom dot color | If you want to customize the color of the dot | If not checked the dot get the color from your theme via `PlasmaCore.Theme.textColor` | From 515b8eba5c6bc09f4849d4be19315a0dac45a443 Mon Sep 17 00:00:00 2001 From: Alan A2N Bouteiller Date: Tue, 7 Nov 2023 12:21:15 +0100 Subject: [PATCH 3/3] pipe seem to bug md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d626b49..22bf864 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,8 @@ Go to the 'System Tray Settings' menu and activate it :) | Interval configuration | set the interval between each execution of the update check function | the `updater` is launch each X minutes | | Debug | Enable the debug mode if set to true | Show each command launch by the plasmoid with `ARCHUPDATE` at the beggining (for regex search) | | Do not close the terminal at the end | if true add the `--noclose` flag into the `konsole` command | Prevent the console to close at the end of the update command | -| Count ARCH command | The command you want to execute for counting the packages for CORE and EXTRA (default: `checkupdates | wc -l`) | The `updater` exec this command | -| Count AUR command | The command you want to execute for counting the packages for the other db (default: `yay -Qua | wc -l`) | The `updater` exec this command | +| Count ARCH command | The command you want to execute for counting the packages for CORE and EXTRA (default: `checkupdates [pipe] wc -l`) | The `updater` exec this command | +| Count AUR command | The command you want to execute for counting the packages for the other db (default: `yay -Qua [pipe] wc -l`) | The `updater` exec this command | | Update command | The command you want to execute when the `update` action is called | Pass the command to `konsole -e` | | Show a dot in place of the label | Replace the label with a colored dot | If the total count is > than 0 the dot is visible, otherwise nothing is shown (no label, no dot) | | Custom dot color | If you want to customize the color of the dot | If not checked the dot get the color from your theme via `PlasmaCore.Theme.textColor` |