Set myTerminal to something else than terminater

Have just set myTerminal to gnome-terminal again, because
terminator, when launched with a specific name, passes the name
to all future instancse in current xsession.
This commit is contained in:
c47 2024-01-14 14:59:09 +01:00
parent fe08c1fda7
commit aaef6850ed

View file

@ -6,7 +6,8 @@ import XMonad.Actions.SpawnOn -- Spawn programs on specified workspace
import XMonad.Hooks.DynamicLog -- For spawnPipe & xmobar
import XMonad.Hooks.ManageDocks -- For the manageHook
myTerminal = "terminator"
myTerminal = "gnome-terminal"
myModMask = mod4Mask
myXmobarrc = "~/.config/xmobar/xmobarrc"
@ -15,7 +16,6 @@ myManageHook = composeAll . concat $
[ [ className =? "DailyFox" --> doShift "1" ]
, [ className =? "DailyShell" --> doShift "2" ]
, [ className =? "Brave-browser" --> doShift "7" ]
, [ manageDocks ]
]