Qutesearch no longer shows duplicates & other stuff

This commit is contained in:
dakedres 2023-10-18 00:37:42 -04:00
parent b0c92ec7ea
commit 46b8dac231
5 changed files with 5 additions and 6 deletions

View File

@ -9,7 +9,7 @@ font_family Ubuntu Mono
bold_font Ubuntu Medium
italic_font Ubuntu Italic
bold_italic_font Ubuntu Medium Italic
font_size 11.0
font_size 11.5
## name: Kaolin Dark
## author: Ogden Webb

View File

@ -1,2 +1,2 @@
[General]
size=@Size(895 1070)
size=@Size(1870 1070)

View File

@ -1,7 +1,7 @@
[General]
__userfile__=true
icon_theme=ePapirus
theme=Valendas
theme=frost
[Palette]
base_color=#18181b

View File

@ -142,8 +142,7 @@ alt + ctrl + shift + space
# move/resize
#
# Expand/contract a window by moving one of its side outward/inward
# Resize a window by moving one of its side outward/inward
alt + s ; {h,j,k,l,Left,Down,Up,Right}
STEP=20; SELECTION={1,2,3,4,1,2,3,4}; \
bspc node -z $(echo "left -$STEP 0,bottom 0 $STEP,top 0 -$STEP,right $STEP 0" | cut -d',' -f$SELECTION) || \

View File

@ -1,6 +1,6 @@
#!/bin/sh
db=$HOME/.local/share/qutebrowser/history.sqlite
url=$(sqlite3 "$db" "select title,url from History" | tac | rofi -dmenu | awk -F '|' '{print $NF}')
url=$(sqlite3 "$db" "select title,url from History" | tac | awk '!a[$0]++' | rofi -dmenu | awk -F '|' '{print $NF}')
[ -z "$url" ] && exit
qutebrowser --target window "$url"