diff options
author | Martin Fischer <martin@push-f.com> | 2025-02-27 20:42:04 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-02-27 20:42:04 +0100 |
commit | f52ef901cb6459a5fe7446fe6e69eab82cb373eb (patch) | |
tree | 05a06b3996224125280aaf6d4cdf88624b59ffe4 | |
parent | 2c134943ea079448c0ad6cf7ff3659cdca582c2a (diff) |
docs: add one-line descriptions to workstation scripts
-rwxr-xr-x | nixos/profiles/workstation/scripts/deploy-dir | 1 | ||||
-rw-r--r-- | nixos/profiles/workstation/scripts/reset-bg | 2 | ||||
-rw-r--r-- | nixos/profiles/workstation/scripts/set-bg | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/nixos/profiles/workstation/scripts/deploy-dir b/nixos/profiles/workstation/scripts/deploy-dir index bb7dfdf..f90a4ae 100755 --- a/nixos/profiles/workstation/scripts/deploy-dir +++ b/nixos/profiles/workstation/scripts/deploy-dir @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# Replaces the contents of a remote directory with the contents of a local directory. if [ "$#" -ne 3 ]; then echo "usage: $0 <local_dir> <ssh_dest> <remote_dir>" diff --git a/nixos/profiles/workstation/scripts/reset-bg b/nixos/profiles/workstation/scripts/reset-bg index 5aa20f6..049954d 100644 --- a/nixos/profiles/workstation/scripts/reset-bg +++ b/nixos/profiles/workstation/scripts/reset-bg @@ -1,2 +1,4 @@ #!/usr/bin/env bash +# Resets the background color of the current foot terminal to the default. + echo -en "\033]111\007" diff --git a/nixos/profiles/workstation/scripts/set-bg b/nixos/profiles/workstation/scripts/set-bg index e78afdc..2ed0a78 100644 --- a/nixos/profiles/workstation/scripts/set-bg +++ b/nixos/profiles/workstation/scripts/set-bg @@ -1,3 +1,5 @@ #!/usr/bin/env bash +# Sets the background color of the current foot terminal to the given hex color. + rgb_with_slashes=$(echo "$1" | sed -r 's,(..)(..),\1/\2/,') echo -en "\033]11;rgb:$rgb_with_slashes\007" |