summaryrefslogtreecommitdiff
path: root/.xinitrc
blob: 776971e010d91014351d7b0b2d56b23e1235157d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh

# General Configurations
setxkbmap gb						# Set keyboard to gb layout
setxkbmap -option caps:swapescape
export SHELL=/bin/zsh					# Set shell to zsh
# wmname LG3D &						# For getting Java applications, e.g. Pycharm, Rider to work.

# Deal with screen saver
xset s off
xset -dpms

# Launch the Window Manager with a Parameter
session=${1:-wmdwm}

run_dwm() {
    # Run all applications that go hand in hand w/ dwm

    while true
    do
        dwm # Begin dwm wrapper 
    done

}

run_ferrwm() {
    RUST_LOG=trace && ferrwm
}

run_spectrwm() {
    spectrwm
}

run_plasma() {
	startplasma-x11
}

case $session in
    wmferrwm            ) run_ferrwm ;;
    wmdwm               ) run_dwm ;;
    wmspectrwm          ) run_spectrwm ;;
    wmplasma            ) run_plasma ;; 
    # No known session, try to run it as command
esac