From 0dd425a4e4a83b77b76e68764b335a07b0278f51 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Fri, 7 May 2021 10:13:25 -0400 Subject: [PATCH] Default Terminal - Change default terminal to kitty --- README.org | 5 ++--- xmonad.hs | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 69342b2..4e8c76f 100644 --- a/README.org +++ b/README.org @@ -2,8 +2,7 @@ #+author: Sravan Balaji #+PROPERTY: header-args:haskell :tangle ./xmonad.hs -* Sravan's Xmonad Configuration -** Welcome +* Welcome My personal configuration of Xmonad, written as an [[https://orgmode.org][Org Mode]] document. @@ -31,7 +30,7 @@ The preferred terminal program, which is used in a binding below and by certain contrib modules. #+begin_src haskell - myTerminal = "xterm" + myTerminal = "kitty" #+end_src * Window Behavior & Appearance diff --git a/xmonad.hs b/xmonad.hs index 49493d9..c509f09 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -5,7 +5,7 @@ import System.Exit import qualified XMonad.StackSet as W import qualified Data.Map as M -myTerminal = "xterm" +myTerminal = "kitty" myFocusFollowsMouse :: Bool myFocusFollowsMouse = True