Update rofi options

This commit is contained in:
gardouille 2021-12-13 11:52:53 +01:00
parent 0c151e6d2c
commit d72b5e70a9
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
2 changed files with 2 additions and 2 deletions

2
qb
View File

@ -219,7 +219,7 @@ goto_qutebrowser_content() { # {{{
debug_message "goto_qutebrowser_content \
Search in Qutebrowser's content ${QUTEBROWSER_GLOBAL_CONTENT} file."
rofi -theme solarized_alternate -dmenu -location 6 -lines 15 -width 80 -p 'Qutebrowser' > "${choice_temp_file}" < "${QUTEBROWSER_GLOBAL_CONTENT}"
rofi -theme solarized_alternate -dmenu -location 6 -l 15 -theme-str 'window {width: 80%;}' -p 'Qutebrowser' > "${choice_temp_file}" < "${QUTEBROWSER_GLOBAL_CONTENT}"
if [ -s "${choice_temp_file}" ]; then
debug_message "goto_qutebrowser_content \

View File

@ -81,7 +81,7 @@ display_current_task() { # {{{
task +ACTIVE export | jq -r 'sort_by( -.urgency )[] | [ (.id|tostring), .description ] | join(" ")' >> "${TASKW_CURRENT_LIST}"
## Display active tasks list and get title from the choosen one
TITLE=$(rofi -theme solarized_alternate -location 2 -lines 5 -no-auto-select -i -dmenu -p "RUNNING task(s)" < "${TASKW_CURRENT_LIST}" |
TITLE=$(rofi -theme solarized_alternate -location 2 -l 5 -no-auto-select -i -dmenu -p "RUNNING task(s)" < "${TASKW_CURRENT_LIST}" |
cut --delimiter=" " --field=2 |
sed "s/[0-9]//g")
ID=$(task "${TITLE}" simpleid | grep --after-context=2 -- ID | tail --lines=1 || return 0)