diff options
| author | Josh Rahm <rahm@google.com> | 2020-02-05 16:08:14 -0700 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2020-02-05 16:08:14 -0700 |
| commit | 9169597a7dcef8046f415b77e0e6cbad696ff5a2 (patch) | |
| tree | f63afe549ea89c06b3fa42aef22b38c6a386648c /src/Internal/PromptConfig.hs | |
| parent | c57a7f0db7dba41fd6851535845077adb08da18d (diff) | |
| download | rde-9169597a7dcef8046f415b77e0e6cbad696ff5a2.tar.gz rde-9169597a7dcef8046f415b77e0e6cbad696ff5a2.tar.bz2 rde-9169597a7dcef8046f415b77e0e6cbad696ff5a2.zip | |
Add ability to fuzzy find and jump to a window based on a prompt
Diffstat (limited to 'src/Internal/PromptConfig.hs')
| -rw-r--r-- | src/Internal/PromptConfig.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Internal/PromptConfig.hs b/src/Internal/PromptConfig.hs new file mode 100644 index 0000000..0db3027 --- /dev/null +++ b/src/Internal/PromptConfig.hs @@ -0,0 +1,12 @@ +module Internal.PromptConfig where + +import XMonad.Prompt + +xpConfig :: XPConfig +xpConfig = def { + font = "xft:Source Code Pro:size=10" + , bgColor = "#404040" + , fgColor = "#8888ff" + , promptBorderWidth = 0 + , height = 40 + } |