diff options
| author | iceyrazor <iceyrazor@mailfence.com> | 2025-06-08 00:09:28 -0500 |
|---|---|---|
| committer | iceyrazor <iceyrazor@mailfence.com> | 2025-06-08 00:09:28 -0500 |
| commit | 01b58f09b74cf22cbdbdc24dbdc8b62fed15f21e (patch) | |
| tree | 78b3e2a4b0777afe5c0cf54949e7528f2ef82b79 /env/.local/bin/scripts | |
| parent | b69040fda091cb2a55e00c05e924cd0c0a42cb57 (diff) | |
removed lsp-zero and reconfigured lsp. setup cmp more throughly. added snippets. made packer file a bit more organized.
Diffstat (limited to 'env/.local/bin/scripts')
| -rwxr-xr-x | env/.local/bin/scripts/setwll | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/env/.local/bin/scripts/setwll b/env/.local/bin/scripts/setwll index b19fdf3..f95db83 100755 --- a/env/.local/bin/scripts/setwll +++ b/env/.local/bin/scripts/setwll @@ -2,13 +2,16 @@ # may be moved to theme setter cd "$(dirname "$0")" +listwalls=0 unload=0 secondary="" primary="" all="" -while getopts "up:s:a:" opt; do +while getopts "lup:s:a:" opt; do case "$opt" in + l) listwalls=1 + ;; u) unload=1 ;; p) primary="$OPTARG" @@ -23,6 +26,11 @@ done shift $((OPTIND-1)) [ "${1:-}" = "--" ] && shift +if [ $listwalls == 1 ]; then + ls ./wallpaper_scripts + exit 0 +fi + if [ "$all" ]; then primary="$all" secondary="$all" |
