diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-07 18:45:22 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-07 18:45:22 +0200 |
| commit | 00c13564a9a5612af9d7009213261ca4220bb0e6 (patch) | |
| tree | d30f4524972b2a058e808ba7479d0ec33c8d9b25 | |
| parent | 8fe18876cbeeabd61bc0da4136a9e75280430ac4 (diff) | |
| download | dotfiles-00c13564a9a5612af9d7009213261ca4220bb0e6.tar.gz dotfiles-00c13564a9a5612af9d7009213261ca4220bb0e6.zip | |
misc: small refactor
| -rwxr-xr-x | .local/bin/dotfiles | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/dotfiles b/.local/bin/dotfiles index faf2c1f..4eec480 100755 --- a/.local/bin/dotfiles +++ b/.local/bin/dotfiles @@ -6,7 +6,7 @@ prompt_for_install() { echo "$label" read -rn 1 -p "Install? (y/n)" input echo - if [[ $input == y ]]; then return 0; else return 1; fi + [[ $input == y ]] } clipboard_hint() { |
