From 9d729a3d90c799d08b9c9c4c3785ec3e36bcb92a Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 23 Nov 2022 00:35:23 -0700 Subject: Remove PromptConfig.hs. Not used. --- src/Rahm/Desktop/PromptConfig.hs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/Rahm/Desktop/PromptConfig.hs (limited to 'src/Rahm/Desktop/PromptConfig.hs') diff --git a/src/Rahm/Desktop/PromptConfig.hs b/src/Rahm/Desktop/PromptConfig.hs deleted file mode 100644 index a270644..0000000 --- a/src/Rahm/Desktop/PromptConfig.hs +++ /dev/null @@ -1,16 +0,0 @@ -module Rahm.Desktop.PromptConfig where - -import XMonad.Prompt - ( XPConfig (bgColor, fgColor, font, height, promptBorderWidth), - def, - ) - -xpConfig :: XPConfig -xpConfig = - def - { font = "xft:Source Code Pro:size=10", - bgColor = "#404040", - fgColor = "#8888ff", - promptBorderWidth = 0, - height = 40 - } -- cgit