Initial commit after confirming working Lua config
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
#set -x
|
||||
source ~/.config/hypr/scripts/functions
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user