From 45362b9d05b031a9ab1917539a8c426914c8ab57 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Mon, 13 Apr 2026 22:13:32 +0200 Subject: [PATCH] (chore) update paths for scripts and patches --- README.md | 6 +++--- prompt.patch => patches/prompt.patch | 0 .../ssh-agent-location.patch | 0 remove-ssh.bash => scripts/remove-ssh.bash | 0 remove-ssh.service => scripts/remove-ssh.service | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename prompt.patch => patches/prompt.patch (100%) rename ssh-agent-location.patch => patches/ssh-agent-location.patch (100%) rename remove-ssh.bash => scripts/remove-ssh.bash (100%) rename remove-ssh.service => scripts/remove-ssh.service (76%) diff --git a/README.md b/README.md index 70ab358..86bf639 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Use ./stow.sh --unstow to remove configuration - gamemode configuration: - renice=10 - ssh-agent: - - agent-location: `cd $HOME/.oh-my-zsh/ && git apply $HOME/.dots/ssh-agent-location.patch` - - remove keys on lock: `ln -sSf $HOME/.dots/remove-ssh.service $HOME/.config/systemd/user/remove-ssh.service && systemctl --user start remove-ssh && systemctl --user enable remove-ssh` + - agent-location: `cd $HOME/.oh-my-zsh/ && git apply $HOME/.dots/patches/ssh-agent-location.patch` + - remove keys on lock: `ln -sSf $HOME/.dots/scripts/remove-ssh.service $HOME/.config/systemd/user/remove-ssh.service && systemctl --user start remove-ssh && systemctl --user enable remove-ssh` ## Software @@ -42,7 +42,7 @@ sudo apt install \ ``` ``` -git clone https://github.com/ohmyzsh/ohmyzsh/ $HOME/.oh-my-zsh && cd $HOME/.oh-my-zsh && git apply $HOME/.dots/prompt.patch +git clone https://github.com/ohmyzsh/ohmyzsh/ $HOME/.oh-my-zsh && cd $HOME/.oh-my-zsh && git apply $HOME/.dots/patches/prompt.patch ``` ### Extended diff --git a/prompt.patch b/patches/prompt.patch similarity index 100% rename from prompt.patch rename to patches/prompt.patch diff --git a/ssh-agent-location.patch b/patches/ssh-agent-location.patch similarity index 100% rename from ssh-agent-location.patch rename to patches/ssh-agent-location.patch diff --git a/remove-ssh.bash b/scripts/remove-ssh.bash similarity index 100% rename from remove-ssh.bash rename to scripts/remove-ssh.bash diff --git a/remove-ssh.service b/scripts/remove-ssh.service similarity index 76% rename from remove-ssh.service rename to scripts/remove-ssh.service index 2f62916..b32d6de 100644 --- a/remove-ssh.service +++ b/scripts/remove-ssh.service @@ -4,7 +4,7 @@ Description=Remove SSH keys on lock [Service] Type=simple Environment=SSH_AUTH_SOCK=/tmp/agent.sock -ExecStart=%h/.dots/remove-ssh.bash +ExecStart=%h/.dots/scripts/remove-ssh.bash [Install] WantedBy=default.target