Initial commit of bash scripts

This commit is contained in:
2026-06-05 23:49:54 -04:00
parent b7cf4a0224
commit 8e0e4dfc79
16 changed files with 519 additions and 70 deletions
+8 -1
View File
@@ -2,5 +2,12 @@
#set -x
source ~/.config/hypr/scripts/functions
create_workspace ${@}
name="$(rofi -dmenu -p "new workspace name" -l 0 < /dev/null)"
if [[ -z "${@}" ]]; then
create_workspace "${name}"
else
after_name="${1}"; shift
create_workspace "${name}" "${after_name}"
fi
#set +x