diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi
index 5f232181..81b2e5ac 100644
--- a/.config/rofi/config.rasi
+++ b/.config/rofi/config.rasi
@@ -1,21 +1,19 @@
-/* rehashedsalt's Gruvbox rofi theme
- * Distributed under the terms of the MIT License
- * github.com/rehashedsalt
- * 
- * See rofi-theme(5) for documentation
+/*
+ * config.rasi
+ * Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
  *
+ * Distributed under terms of the MIT License
+ *
+ * See rofi-theme(5) for documentation
  */
 
 configuration {
-	matching: "fuzzy";
+	matching: "normal";
 	show-icons: true;
 	icon-theme: "Papirus-Dark";
 	modi: "drun,ssh,window";
-	sidebar-mode: true;
-
-	yoffset: -4;
-	xoffset: 0;
-	width: 32;
+	height: 60%;
+	width: 50%;
 }
 
 * {
@@ -33,69 +31,63 @@ configuration {
 }
 
 #window {
-	location: north;
-	anchor: north;
+	location: center;
+	anchor: center;
 
 	border-color: @background-alt;
 	background-color: @background;
 
 	border: 4px;
-	height: 40%;
-	width: 520px;
+	border-radius: 16px;
 }
-
 	#inputbar {
-		padding: 10px;
-		border: 0px 0px 4px 0px;
-		border-color: @background-alt;
+		padding: 2em;
 	}
-
 		#case-indicator {
 			text-color: @foreground-alt;
 		}
-
 		#prompt {
-			font: "Roboto Bold 10";
+			font: "Roboto Bold 16";
 			padding: 0px 8px 0px 0px;
 			text-color: @foreground;
 		}
-
+		#entry {
+			font: "Roboto 16";
+		}
 	#message {
 		padding: 4px;
 	}
-		
 		#textbox {
 			padding: 4px 12px 4px 12px;
 			font-color: @foreground-alt;
 		}
 
 	#listview {
-		padding: 4px;
-		spacing: 0px;
+		columns: 2;
+		padding: 1em;
 	}
-
-		#element {
-			padding: 4px;
+		#element-icon {
+			size: 1.2em;
+		}
+		#element {
+			orientation: vertical;
+			padding: 8px;
+			border-radius: 8px;
 		}
-
 		#element normal active {
 			text-color: @blue-dark;
 		}
-
 		#element normal urgent {
 			text-color: @yellow;
 		}
-
 		#element selected normal {
 			background-color: @blue;
 			text-color: @background;
 		}
-
 		#element selected active {
 			background-color: @blue-dark;
 			text-color: @background;
 		}
-
 		#element selected urgent {
 			background-color: @yellow;
 			text-color: @background;
@@ -113,5 +105,4 @@ configuration {
 		}
 
 /* vim:ft=css
- */
-
+*/