diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf
index d8d82ba..4d6f2d0 100644
--- a/config/kitty/kitty.conf
+++ b/config/kitty/kitty.conf
@@ -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
diff --git a/config/lxqt/lxqt-config.conf b/config/lxqt/lxqt-config.conf
index a9a05fe..79303ed 100644
--- a/config/lxqt/lxqt-config.conf
+++ b/config/lxqt/lxqt-config.conf
@@ -1,2 +1,2 @@
 [General]
-size=@Size(895 1070)
+size=@Size(1870 1070)
diff --git a/config/lxqt/lxqt.conf b/config/lxqt/lxqt.conf
index 3f162ca..7634a4f 100644
--- a/config/lxqt/lxqt.conf
+++ b/config/lxqt/lxqt.conf
@@ -1,7 +1,7 @@
 [General]
 __userfile__=true
 icon_theme=ePapirus
-theme=Valendas
+theme=frost
 
 [Palette]
 base_color=#18181b
diff --git a/config/sxhkd/sxhkdrc b/config/sxhkd/sxhkdrc
index 40ab269..ab1f572 100755
--- a/config/sxhkd/sxhkdrc
+++ b/config/sxhkd/sxhkdrc
@@ -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) || \
diff --git a/scripts/qutesearch b/scripts/qutesearch
index 4ecd999..98ce7e7 100755
--- a/scripts/qutesearch
+++ b/scripts/qutesearch
@@ -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"