mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
cd4888a5cf
* Add script_dialog, so user can add dialogs using a script. * Add a way to disable modi's * Add -show <modi> option.
22 lines
400 B
Bash
Executable file
22 lines
400 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -z $@ ]
|
|
then
|
|
function gen_workspaces()
|
|
{
|
|
i3-msg -t get_workspaces | tr ',' '\n' | grep "name" | sed 's/"name":"\(.*\)"/\1/g' | sort -n
|
|
}
|
|
|
|
|
|
echo empty; gen_workspaces
|
|
else
|
|
WORKSPACE=$@
|
|
|
|
if [ x"empty" = x"${WORKSPACE}" ]
|
|
then
|
|
i3_empty_workspace.sh >/dev/null
|
|
elif [ -n "${WORKSPACE}" ]
|
|
then
|
|
i3-msg workspace "${WORKSPACE}" >/dev/null
|
|
fi
|
|
fi
|