aboutsummaryrefslogtreecommitdiffstats
path: root/herbstluftwm/.local/bin/hlwm_select_tag
blob: 3b23188fd79f444c4987b061cb8949e6d910905b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

hc() { "${herbstclient_command[@]:-herbstclient}" "$@" ;}
#IFS=$'\t' read -ra tags <<< "$(hc tag_status "")"
tags="$(hc tag_status "" | tr '\t' '\n')"
tags_list=$(echo "$tags" | sed 's/^.//g')

selected_tag=$(echo "$tags_list" | rofi -dmenu)
hc add "$selected_tag"
echo "$selected_tag"