diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-09-27 15:32:08 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-09-27 15:32:08 +0100 |
commit | 8b2d5dc3fb67dd5ecd2b0165b131167ce3a82b1d (patch) | |
tree | 96b62accf563a1ecb368cecaa371110c4b726564 | |
parent | 823357067df3b1dc0baee9bfb838c66dde1c10ea (diff) |
[i3] Update dmenu options in workspace script
-rwxr-xr-x | bin/bin/workspace | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bin/workspace b/bin/bin/workspace index a9e4aa0..e380f98 100755 --- a/bin/bin/workspace +++ b/bin/bin/workspace @@ -11,7 +11,7 @@ workspaces=$(i3-msg -t get_workspaces | grep -Po '"name":.*?[^\\]"' | sed 's/"na workspaces=$(echo $workspaces | sed '/:/!d') # Get desired workspace -target=$(echo $workspaces | dmenu -b -i -sf green -p "Go to workspace:") +target=$(echo $workspaces | dmenu "Go to workspace:") # Exit if empty [[ -z $target ]] && exit |