From 28fbe6a042ce6c60dfb155799885909e18598f9e Mon Sep 17 00:00:00 2001 From: fabianArbeit Date: Thu, 14 Aug 2025 11:22:39 +0200 Subject: [PATCH 01/12] new config for wezterm to behave similar to kitty (and termintator) --- home_external/.config/wezterm/.wezterm.lua | 116 +++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 home_external/.config/wezterm/.wezterm.lua diff --git a/home_external/.config/wezterm/.wezterm.lua b/home_external/.config/wezterm/.wezterm.lua new file mode 100644 index 0000000..7c754d0 --- /dev/null +++ b/home_external/.config/wezterm/.wezterm.lua @@ -0,0 +1,116 @@ +-- Pull in the wezterm API +local wezterm = require 'wezterm' +local act = wezterm.action +local mux = wezterm.mux + +-- This will hold the configuration. +local config = wezterm.config_builder() + +-- This is where you actually apply your config choices + +-- For example, changing the color scheme: +config.color_scheme = 'AdventureTime' +-- config.font = wezterm.font 'JetBrains Mono' -- also the default +config.font = wezterm.font 'Fira Code' +config.font_size = 12.0 -- also the default + +-- Spawn a git bash shell +config.default_prog = { 'C:/Program Files/Git/bin/bash.exe' , '--cd-to-home' } + +-- cursor shape and behaviour +config.default_cursor_style = 'BlinkingBar' +config.animation_fps = 1 +config.cursor_blink_ease_in = 'Constant' +config.cursor_blink_ease_out = 'Constant' + +config.enable_kitty_keyboard = true + +-- window appearance +config.enable_scroll_bar = true +config.window_padding = { + left = 0, + right = 0, + top = 0, + bottom = 0, +} +config.initial_rows = 50; + +wezterm.on('gui-startup', function(cmd) + local tab, pane, window = mux.spawn_window(cmd or {}) + -- Create a split occupying the right 1/3 of the screen + local loading_bar_pane = pane:split { + direction = 'Bottom', + size = 0.06, + } + -- go to JavaUtils-Directory and prepare command + loading_bar_pane:send_text 'cd JavaUtils/zeitlaeufer/target\njava de.szimnau.WorkLoadingBar' + -- optionally: clear before preparing command + -- loading_bar_pane:send_text 'cd JavaUtils\nc\njava LoadingBar' +end) + +config.keys = { + -- This will create a new horizontal split and run your default program inside it + { + key = 'E', + mods = 'CTRL|SHIFT', + action = act.SplitHorizontal { domain = 'CurrentPaneDomain' }, + }, + -- This will create a new vertical split and run your default program inside it + { + key = 'O', + mods = 'CTRL|SHIFT', + action = act.SplitVertical { domain = 'CurrentPaneDomain' }, + }, + -- resize the current split + { + key = 'UpArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Up', 1 }, + }, + { + key = 'DownArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Down', 1 }, + }, + { + key = 'LeftArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Left', 1 } + }, + { + key = 'RightArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Right', 1 }, + }, + -- move around the splits + { + key = 'UpArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Up', + }, + { + key = 'DownArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Down', + }, + { + key = 'LeftArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Left', + }, + { + key = 'RightArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Right', + }, + -- makes pane take up all available space in the tab, hiding all other panes + { + key = 'X', + mods = 'CTRL|SHIFT', + action = wezterm.action.TogglePaneZoomState, + }, +} + + +-- and finally, return the configuration to wezterm +return config From f33f448a42cf20ed91433e8ab530e72973b11a91 Mon Sep 17 00:00:00 2001 From: fabianArbeit Date: Thu, 14 Aug 2025 11:32:02 +0200 Subject: [PATCH 02/12] - updated keymap settings for linux - copy for windows --- .../User/Default (Linux).sublime-keymap | 31 +++++++++---------- .../User/Default (Windows).sublime-keymap | 15 +++++++++ 2 files changed, 30 insertions(+), 16 deletions(-) create mode 100644 home_external/.config/sublime-text-3/Packages/User/Default (Windows).sublime-keymap diff --git a/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap b/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap index 2bfa62b..e1eab55 100644 --- a/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap +++ b/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap @@ -1,16 +1,15 @@ -[ - { "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, - { "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, - { "keys": ["ctrl+tab"], "command": "next_view" }, - { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, - { "keys": ["ctrl+shift+x"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, - { "keys": ["alt+keypad_plus"], "command": "jump_forward" }, - { "keys": ["ctrl+b"], "command": "none" }, - { "keys": ["ctrl+keypad_enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"} }, - // { "keys": ["shift+tab"], "command": "insert", "args": {"characters": "\t"} }, - // { "keys": ["tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": true} } // can't unset this. fuck you. - { "keys": ["ctrl+alt+n"], "command": "new_snippet" }, - { "keys": ["ctrl+alt+f"], "command": "auto_indent" } - // { "keys": [""], "command": "lower_case" } - // { "keys": [""], "command": "upper_case" } -] +[ + { "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, + { "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, + { "keys": ["ctrl+tab"], "command": "next_view" }, + { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, + { "keys": ["ctrl+shift+x"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, + { "keys": ["alt+keypad_plus"], "command": "jump_forward" }, + { "keys": ["alt+="], "command": "jump_forward" }, + // { "keys": ["ctrl+b"], "command": "none" }, + { "keys": ["ctrl+keypad_enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"} }, + // { "keys": ["shift+tab"], "command": "insert", "args": {"characters": "\t"} }, + // { "keys": ["tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": true} } // can't unset this. fuck you. + { "keys": ["ctrl+alt+n"], "command": "new_snippet" }, + { "keys": ["ctrl+alt+f"], "command": "auto_indent" }, +] diff --git a/home_external/.config/sublime-text-3/Packages/User/Default (Windows).sublime-keymap b/home_external/.config/sublime-text-3/Packages/User/Default (Windows).sublime-keymap new file mode 100644 index 0000000..e1eab55 --- /dev/null +++ b/home_external/.config/sublime-text-3/Packages/User/Default (Windows).sublime-keymap @@ -0,0 +1,15 @@ +[ + { "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, + { "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, + { "keys": ["ctrl+tab"], "command": "next_view" }, + { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, + { "keys": ["ctrl+shift+x"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, + { "keys": ["alt+keypad_plus"], "command": "jump_forward" }, + { "keys": ["alt+="], "command": "jump_forward" }, + // { "keys": ["ctrl+b"], "command": "none" }, + { "keys": ["ctrl+keypad_enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"} }, + // { "keys": ["shift+tab"], "command": "insert", "args": {"characters": "\t"} }, + // { "keys": ["tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": true} } // can't unset this. fuck you. + { "keys": ["ctrl+alt+n"], "command": "new_snippet" }, + { "keys": ["ctrl+alt+f"], "command": "auto_indent" }, +] From 6f70a133cfc05c3348ba7ae1ca481d5a1f52e4b0 Mon Sep 17 00:00:00 2001 From: fabianArbeit Date: Thu, 14 Aug 2025 11:32:43 +0200 Subject: [PATCH 03/12] updated preferences --- .../Packages/User/Preferences.sublime-settings | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings b/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings index ec5cd32..8d6a20e 100644 --- a/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings +++ b/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings @@ -1,5 +1,3 @@ -// Settings in here override those in "Default/Preferences.sublime-settings", -// and are overridden in turn by syntax-specific settings. { "always_show_minimap_viewport": true, "auto_complete_commit_on_tab": true, @@ -8,11 +6,13 @@ "bold_folder_labels": true, "color_scheme": "Mariana.sublime-color-scheme", "drag_text": false, - "draw_white_space": ["selection", "all_mixed"], + // "draw_white_space": ["selection", "all_mixed", "all_tabs", "trailing", "isolated"], + "draw_white_space": ["all"], "enable_tab_scrolling": false, "ensure_newline_at_eof_on_save": true, "fade_fold_buttons": false, "fallback_encoding": "UTF-8", + "find_in_files_side_by_side": false, "font_size": 11, "font_face": "JetBrains Mono Regular", "highlight_line": true, @@ -45,4 +45,5 @@ "word_wrap": true, "wrap_width": 120, "index_files": true, + "caret_style": "smooth", } From 17528d5f51e1c1c60d85aab5fafaa7b614b4ca14 Mon Sep 17 00:00:00 2001 From: fabianArbeit Date: Thu, 14 Aug 2025 11:48:41 +0200 Subject: [PATCH 04/12] modified config to not be work specific --- home_external/.config/wezterm/.wezterm.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home_external/.config/wezterm/.wezterm.lua b/home_external/.config/wezterm/.wezterm.lua index 7c754d0..ba56929 100644 --- a/home_external/.config/wezterm/.wezterm.lua +++ b/home_external/.config/wezterm/.wezterm.lua @@ -33,9 +33,9 @@ config.window_padding = { top = 0, bottom = 0, } -config.initial_rows = 50; +-- config.initial_rows = 50; -wezterm.on('gui-startup', function(cmd) +--[[wezterm.on('gui-startup', function(cmd) local tab, pane, window = mux.spawn_window(cmd or {}) -- Create a split occupying the right 1/3 of the screen local loading_bar_pane = pane:split { @@ -45,8 +45,8 @@ wezterm.on('gui-startup', function(cmd) -- go to JavaUtils-Directory and prepare command loading_bar_pane:send_text 'cd JavaUtils/zeitlaeufer/target\njava de.szimnau.WorkLoadingBar' -- optionally: clear before preparing command - -- loading_bar_pane:send_text 'cd JavaUtils\nc\njava LoadingBar' -end) + -- loading_bar_pane:send_text 'cd JavaUtils/zeitlaeufer/target\nc\njava de.szimnau.WorkLoadingBar' +end)]] config.keys = { -- This will create a new horizontal split and run your default program inside it From 48bda2be2d0d6ff96aaed12b39eb302077767ca0 Mon Sep 17 00:00:00 2001 From: fszimnau Date: Thu, 16 Oct 2025 13:04:36 +0200 Subject: [PATCH 05/12] additions from msys64 --- home_external/.bash_aliases | 2 +- home_external/.bash_profile | 1 + home_external/.config/sqlite3/.sqliterc | 2 + home_external/.config/wezterm/wezterm.lua | 117 ++++++++++++++++++++++ 4 files changed, 121 insertions(+), 1 deletion(-) create mode 100644 home_external/.config/sqlite3/.sqliterc create mode 100644 home_external/.config/wezterm/wezterm.lua diff --git a/home_external/.bash_aliases b/home_external/.bash_aliases index c88e541..34f2456 100644 --- a/home_external/.bash_aliases +++ b/home_external/.bash_aliases @@ -80,7 +80,7 @@ doUpdateFlatpak() { # executes command and notifies upon failure execute() { dir="$(pwd)"; - dir=${dir##*/}; + dir=${dir##*/}; # cut off previous path (/path/to/foo.txt -> foo.txt) if [[ -n "$2" ]]; then errLog=$2; else diff --git a/home_external/.bash_profile b/home_external/.bash_profile index 5545f00..ad8dc45 100644 --- a/home_external/.bash_profile +++ b/home_external/.bash_profile @@ -2,4 +2,5 @@ # ~/.bash_profile # +[[ -f ~/.profile ]] && . ~/.profile [[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/home_external/.config/sqlite3/.sqliterc b/home_external/.config/sqlite3/.sqliterc new file mode 100644 index 0000000..2ef1f42 --- /dev/null +++ b/home_external/.config/sqlite3/.sqliterc @@ -0,0 +1,2 @@ +.crlf off +.mode box diff --git a/home_external/.config/wezterm/wezterm.lua b/home_external/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..b0f260a --- /dev/null +++ b/home_external/.config/wezterm/wezterm.lua @@ -0,0 +1,117 @@ +-- Pull in the wezterm API +local wezterm = require 'wezterm' +local act = wezterm.action +local mux = wezterm.mux + +-- This will hold the configuration. +local config = wezterm.config_builder() + +-- This is where you actually apply your config choices + +-- For example, changing the color scheme: +config.color_scheme = 'AdventureTime' +-- config.font = wezterm.font 'JetBrains Mono' -- also the default +config.font = wezterm.font 'Fira Code' +config.font_size = 12.0 -- also the default + +-- Spawn a git bash shell +-- config.default_prog = { 'C:/Program Files/Git/bin/bash.exe' , '--cd-to-home' } +-- config.default_prog = { 'C:/theo_dev/bin/msys64/usr/bin/bash.exe' } +-- config.default_prog = { 'C:/theo_dev/bin/msys64/msys2_shell.cmd', '-defterm', '-where', 'G:\\', '-no-start', '-ucrt64', '-use-full-path' } +config.default_prog = { 'C:/theo_dev/bin/msys64/msys2_shell.cmd', '-defterm', '-no-start', '-ucrt64', '-use-full-path' } + +-- cursor shape and behaviour +config.default_cursor_style = 'BlinkingBar' +config.animation_fps = 1 +config.cursor_blink_ease_in = 'Constant' +config.cursor_blink_ease_out = 'Constant' + +config.enable_kitty_keyboard = true + +-- window appearance +config.enable_scroll_bar = true +config.window_padding = { + left = 0, + right = 0, + top = 0, + bottom = 0, +} +config.initial_rows = 50; + +wezterm.on('gui-startup', function(cmd) + local tab, pane, window = mux.spawn_window(cmd or {}) + -- Create a split occupying the right 1/3 of the screen + local loading_bar_pane = pane:split { + direction = 'Bottom', + size = 0.06, + } + -- prepare command (\n possible to send command) + loading_bar_pane:send_text '. /g/zeitlaeufer/runProject.sh de.szimnau.zeitlaeufer.WorkLoadingBar' +end) + +config.keys = { + -- This will create a new horizontal split and run your default program inside it + { + key = 'E', + mods = 'CTRL|SHIFT', + action = act.SplitHorizontal { domain = 'CurrentPaneDomain' }, + }, + -- This will create a new vertical split and run your default program inside it + { + key = 'O', + mods = 'CTRL|SHIFT', + action = act.SplitVertical { domain = 'CurrentPaneDomain' }, + }, + -- resize the current split + { + key = 'UpArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Up', 1 }, + }, + { + key = 'DownArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Down', 1 }, + }, + { + key = 'LeftArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Left', 1 } + }, + { + key = 'RightArrow', + mods = 'CTRL|SHIFT', + action = act.AdjustPaneSize { 'Right', 1 }, + }, + -- move around the splits + { + key = 'UpArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Up', + }, + { + key = 'DownArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Down', + }, + { + key = 'LeftArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Left', + }, + { + key = 'RightArrow', + mods = 'ALT', + action = act.ActivatePaneDirection 'Right', + }, + -- makes pane take up all available space in the tab, hiding all other panes + { + key = 'X', + mods = 'CTRL|SHIFT', + action = wezterm.action.TogglePaneZoomState, + }, +} + + +-- and finally, return the configuration to wezterm +return config From 2af9cc20dfa57028215c5e628a803c19bd6d8e50 Mon Sep 17 00:00:00 2001 From: fabian Date: Sat, 6 May 2023 04:11:17 +0200 Subject: [PATCH 06/12] Revert "Revert "old raspi version of nanorc cannot handle certain settings"" This reverts commit 844fe85d6d6b5a96b21e6bcf8f44de3cf936379f. --- home_external/.config/nano/nanorc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home_external/.config/nano/nanorc b/home_external/.config/nano/nanorc index 7c13914..21e7054 100644 --- a/home_external/.config/nano/nanorc +++ b/home_external/.config/nano/nanorc @@ -89,7 +89,7 @@ set linenumbers set matchbrackets "(<[{)>]}" ## Suppress title bar and show file name and editor state at the bottom. -set minibar +# set minibar ## Enable mouse support, if available for your system. When enabled, ## mouse clicks can be used to place the cursor, set the mark (with a From 96821cf0aa2b1c717a92b9c9cda1f95237f63dce Mon Sep 17 00:00:00 2001 From: fabian Date: Sun, 14 May 2023 12:18:13 +0200 Subject: [PATCH 07/12] - commented out options not working in ancient debian version --- home_external/.config/rofi/config.rasi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home_external/.config/rofi/config.rasi b/home_external/.config/rofi/config.rasi index 2d0b8eb..ae0955a 100644 --- a/home_external/.config/rofi/config.rasi +++ b/home_external/.config/rofi/config.rasi @@ -139,13 +139,13 @@ configuration { /* me-select-entry: "MousePrimary";*/ /* me-accept-entry: "MouseDPrimary";*/ /* me-accept-custom: "Control+MouseDPrimary";*/ - timeout { +/* timeout { action: "kb-cancel"; delay: 0; } filebrowser { directories-first: true; sorting-method: "name"; - } + }*/ } @theme "/usr/share/rofi/themes/Arc-Dark.rasi" From cb88a86e7164b3ee2ec9927bafee374d897a8f08 Mon Sep 17 00:00:00 2001 From: fabian Date: Sun, 31 Mar 2024 23:54:05 +0200 Subject: [PATCH 08/12] new function to update debian based systems improved automatic updates via executeAndNotify to enable fire-and-forget --- home_external/.bash_aliases_branched | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/home_external/.bash_aliases_branched b/home_external/.bash_aliases_branched index c2539e2..47bfa4b 100644 --- a/home_external/.bash_aliases_branched +++ b/home_external/.bash_aliases_branched @@ -4,13 +4,18 @@ updatePackages() { noconfirm= if [[ $1 == "-y" ]]; then - noconfirm="--no-confirm"; + noconfirm="--assume-yes" fi - executeAndNotify "doUpdatePackages $noconfirm" "packages updated" "package update failed"; + full= + if [[ $2 == "--full" ]]; then + full="full-" + fi + executeAndNotify "doUpdatePackages $noconfirm $full" "system updated" "system update failed"; } doUpdatePackages() { - pamac update $1; - pamac remove --orphans --cascade $1; + sudo apt update; + sudo apt ${2}upgrade $1; + sudo apt autoremove $1; } From 0d9f4cfb258e216218fb3b02c3a79c3fd6227153 Mon Sep 17 00:00:00 2001 From: fabian Date: Fri, 2 Jun 2023 15:57:57 +0200 Subject: [PATCH 09/12] improved automatic updates via executeAndNotify to enable fire-and-forget --- home_external/.bash_aliases_extra | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 home_external/.bash_aliases_extra diff --git a/home_external/.bash_aliases_extra b/home_external/.bash_aliases_extra new file mode 100644 index 0000000..ad0a437 --- /dev/null +++ b/home_external/.bash_aliases_extra @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +updateSystem() { + noconfirm= + if [[ $1 == "-y" ]]; then + noconfirm="--assume-yes" + fi + full= + if [[ $2 == "--full" ]]; then + full="full-" + fi + executeAndNotify "doUpdateSystem $noconfirm $full" "system updated" "system update failed"; +} + + +doUpdateSystem() { + sudo apt update; + sudo apt ${2}upgrade $1; + sudo apt autoremove $1; +} From bb7fa9ae79dda38190fa9b0668d08cadbf38d994 Mon Sep 17 00:00:00 2001 From: fabian Date: Mon, 1 Apr 2024 00:17:07 +0200 Subject: [PATCH 10/12] fkin just work now... please --- home_external/.bash_aliases_extra | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 home_external/.bash_aliases_extra diff --git a/home_external/.bash_aliases_extra b/home_external/.bash_aliases_extra deleted file mode 100644 index ad0a437..0000000 --- a/home_external/.bash_aliases_extra +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -updateSystem() { - noconfirm= - if [[ $1 == "-y" ]]; then - noconfirm="--assume-yes" - fi - full= - if [[ $2 == "--full" ]]; then - full="full-" - fi - executeAndNotify "doUpdateSystem $noconfirm $full" "system updated" "system update failed"; -} - - -doUpdateSystem() { - sudo apt update; - sudo apt ${2}upgrade $1; - sudo apt autoremove $1; -} From 685957301daece4a96048dd7d5c621d332e5d8d4 Mon Sep 17 00:00:00 2001 From: fabian Date: Sun, 1 Sep 2024 14:46:44 +0200 Subject: [PATCH 11/12] fix npe-like-error --- scripts/backup_edi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/backup_edi.sh b/scripts/backup_edi.sh index adee0e9..42d8ee2 100755 --- a/scripts/backup_edi.sh +++ b/scripts/backup_edi.sh @@ -32,7 +32,7 @@ backupRootDirectory /etc/docker/daemon.json $BACKUP_DIR_ROOT/docker/ ### upload backup ### ##################### -if [[ "$1" == "--noupload" ]]; then +if [[ $# > 0 && "$1" == "--noupload" ]]; then exit 0; fi From 57e52b78a25cc803d0eebd52aa0a56394063c0a6 Mon Sep 17 00:00:00 2001 From: fabian Date: Sun, 1 Sep 2024 14:47:17 +0200 Subject: [PATCH 12/12] updated command to docker compose 2.0 --- scripts/dockerContainerAction.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dockerContainerAction.sh b/scripts/dockerContainerAction.sh index 74a4e1f..87e2da9 100644 --- a/scripts/dockerContainerAction.sh +++ b/scripts/dockerContainerAction.sh @@ -16,7 +16,7 @@ upDownContainers() { continue; fi cd $subdir; - docker-compose $@; + docker compose $@; done }