blob: 6b9242908c4d010fcc594fe3cd32e13f8d7a87e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
# General Configurations
setxkbmap gb # Set keyboard to gb layout
export SHELL=/bin/zsh # Set shell to zsh
# wmname LG3D & # For getting Java applications, e.g. Pycharm, Rider to work.
# Launch the Window Manager with a Parameter
session=${1:-dwm}
run_dwm() {
# Run all applications that go hand in hand w/ dwm
while true
do
dwm # Begin dwm wrapper
done
}
case $session in
i3|i3wm ) exec i3;;
dwm ) run_dwm ;;
# No known session, try to run it as command
esac
|