Compare commits

...

30 Commits

Author SHA1 Message Date
77cbe83996 Merge branch 'master' into debian 2025-11-20 21:29:42 +01:00
73f5fe2e45 fixed commandExists 2025-11-20 21:28:53 +01:00
977956cc03 Merge branch 'debian' of git.szimnau.de:fabian/sync into debian 2025-11-19 21:04:53 +01:00
334cf5c3e0 Merge branch 'debian' of git.szimnau.de:fabian/sync into debian 2025-11-19 20:35:13 +01:00
6c5ae8044e Merge branch 'debian' of git.szimnau.de:fabian/sync into debian 2025-05-03 13:07:34 +02:00
bdfa92f790 Merge branch 'debian' of git.szimnau.de:fabian/sync into debian 2024-09-01 14:49:26 +02:00
cc3760347c fixed prints 2024-09-01 14:49:14 +02:00
6fb25215b5 Merge remote-tracking branch 'origin/master' into debian 2023-08-20 17:32:10 +02:00
812805ced5 Merge remote-tracking branch 'origin/master' into debian 2023-08-20 14:49:40 +02:00
632a0c6741 Merge remote-tracking branch 'origin/master' into debian 2023-07-30 09:56:57 +02:00
25065ea703 Merge remote-tracking branch 'origin/master' into debian 2023-07-06 15:39:29 +02:00
fd9dba9f12 Merge remote-tracking branch 'origin/master' into debian 2023-07-06 13:00:17 +02:00
3d740f1c3b Merge branch 'master' into debian 2023-06-02 16:03:05 +02:00
647831e860 improved automatic updates via executeAndNotify to enable fire-and-forget 2023-06-02 15:57:57 +02:00
452fd7600d new function to update debian based systems 2023-05-31 10:55:35 +02:00
d84d9e6933 Merge branch 'debian' of ssh://git.szimnau.de:222/fabian/sync into debian 2023-05-31 10:42:56 +02:00
12e5c3e2b1 - commented out options not working in ancient debian version 2023-05-31 10:42:41 +02:00
49335145fd Revert "Revert "old raspi version of nanorc cannot handle certain settings""
This reverts commit 844fe85d6d.
2023-05-31 10:42:41 +02:00
ec5a09da64 Merge remote-tracking branch 'origin/master' into debian 2023-05-27 18:14:45 +02:00
bb277234ea Merge branch 'master' into debian 2023-05-19 18:34:17 +02:00
2d4027379b Merge branch 'master' into debian 2023-05-19 15:14:21 +02:00
d59183ad63 Merge branch 'master' into debian 2023-05-14 12:50:49 +02:00
2233d47782 Merge remote-tracking branch 'origin/master' into debian 2023-05-14 12:20:09 +02:00
1d3d82aa5b Merge branch 'debian' of git.szimnau.de:fabian/sync into debian 2023-05-14 12:19:05 +02:00
d6cc45381e - commented out options not working in ancient debian version 2023-05-14 12:18:13 +02:00
de22a1668e Merge remote-tracking branch 'origin/master' into debian 2023-05-06 15:19:37 +02:00
6c283839fb Merge remote-tracking branch 'origin/master' into debian 2023-05-06 06:10:23 +02:00
682dc5f18a Merge remote-tracking branch 'origin/master' into debian 2023-05-06 05:45:19 +02:00
ea7c081bd4 Merge remote-tracking branch 'origin/master' into debian 2023-05-06 04:57:15 +02:00
5881642a40 Revert "Revert "old raspi version of nanorc cannot handle certain settings""
This reverts commit 844fe85d6d.
2023-05-06 04:11:17 +02:00

View File

@@ -68,7 +68,7 @@ doUpdateSystem() {
updateFlatpak() { updateFlatpak() {
if [[ ! $(commandExists flatpak) ]]; then if ! $(commandExists flatpak); then
return 1; return 1;
fi fi
noconfirm= noconfirm=
@@ -127,7 +127,7 @@ finds () {
# sends a desktop-notification with an icon signalling an error # sends a desktop-notification with an icon signalling an error
notifyError () { notifyError () {
if [[ ! $(commandExists notify-send) ]]; then if ! $(commandExists notify-send); then
echo "ERROR: $1"; echo "ERROR: $1";
else else
notify-send "$1" --icon=data-warning; notify-send "$1" --icon=data-warning;
@@ -137,7 +137,7 @@ notifyError () {
# sends a desktop-notification with an icon signalling a simple information # sends a desktop-notification with an icon signalling a simple information
notifyInfo () { notifyInfo () {
if [[ ! $(commandExists notify-send) ]]; then if ! $(commandExists notify-send); then
echo "INFO: $1"; echo "INFO: $1";
else else
notify-send "$1" --icon=preferences-desktop-notification; notify-send "$1" --icon=preferences-desktop-notification;