From 375a316ac1ecd1a9bb7cd7ee4294c8a47fe28b6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Sat, 29 Jul 2023 00:22:27 +0200 Subject: [PATCH] use st as terminal --- xmonad/.config/xmonad/xmonad.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xmonad/.config/xmonad/xmonad.hs b/xmonad/.config/xmonad/xmonad.hs index 08829cc..8e23624 100644 --- a/xmonad/.config/xmonad/xmonad.hs +++ b/xmonad/.config/xmonad/xmonad.hs @@ -29,7 +29,7 @@ ifDark dark light = if isDark then dark else light myConfig = def { modMask = mod4Mask, - terminal = "xterm", + terminal = "st", borderWidth = 3, focusedBorderColor = ifDark "#a0522d" "#ff7f50", normalBorderColor = ifDark "#708090" "#bebebe", @@ -59,9 +59,9 @@ myConfig = ] scratchpads = - [ NS "terminal" "xterm -T terminal" (title =? "terminal") floating, + [ NS "terminal" "st -T terminal" (title =? "terminal") floating, NS "thunar" "thunar" (className =? "Thunar") floating, - NS "top" "xterm -T top -e top" (title =? "top") floating + NS "top" "st -T top -e top" (title =? "top") floating ] where floating = customFloating $ RationalRect (1 / 6) (1 / 6) (2 / 3) (2 / 3)