Compare commits

...

2 commits

Author SHA1 Message Date
c47 120ac74515 Add maneageHook entries for chat tools
Added manageHook entries for desktop chat clients to spawn on
WS3 and put oneshot entries in .xsessionrc.
2024-01-14 15:39:21 +01:00
c47 aaef6850ed 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.
2024-01-14 14:59:09 +01:00
2 changed files with 14 additions and 5 deletions

View file

@ -6,16 +6,19 @@ 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"
myManageHook = composeAll . concat $
[ [ className =? "DailyFox" --> doShift "1" ]
, [ className =? "DailyShell" --> doShift "2" ]
, [ className =? "Brave-browser" --> doShift "7" ]
, [ manageDocks ]
[ [ className =? "DailyFox" --> doShift "1" ]
, [ className =? "DailyShell" --> doShift "2" ]
, [ className =? "Signal" --> doShift "3" ]
, [ className =? "SchildiChat" --> doShift "3" ]
, [ className =? "Skype" --> doShift "3" ]
, [ className =? "Brave-browser" --> doShift "7" ]
]

View file

@ -1,2 +1,8 @@
/usr/bin/firefox --class="DailyFox" -P "default-esr" &
/usr/bin/terminator --name="DailyShell" -e "bash /home/c47/.local/scripts/default-tmux.sh -" &
# Chat
/usr/bin/signal-desktop &
/usr/bin/skypeforlinux &
/usr/bin/flatpak run chat.schildi.desktop &
/usr/bin/google-chrome web.whatsapp.com web.telegram.org &