diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Prompt.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Prompt.hs b/XMonad/Prompt.hs index 20a41bd..951f9ad 100644 --- a/XMonad/Prompt.hs +++ b/XMonad/Prompt.hs @@ -223,7 +223,7 @@ defaultXPConfig = , showCompletionOnTab = False , searchPredicate = isPrefixOf } -greenXPConfig = defaultXPConfig { fgColor = "green", bgColor = "black" } +greenXPConfig = defaultXPConfig { fgColor = "green", bgColor = "black", promptBorderWidth = 0 } amberXPConfig = defaultXPConfig { fgColor = "#ca8f2d", bgColor = "black", fgHLight = "#eaaf4c" } type ComplFunction = String -> IO [String] |