blob: 7876b9ac48936dc39606852076d75e13b21ceb80 (
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
48
49
50
51
|
#!/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.
# Daemons etc.
mpd
# Programs for creating desktop
picom & # Compositor
# Launch the Window Manager with a Parameter
session=${1:-dwm}
run_dwm() {
# /usr/bin/prime-offload # For optimus-manager, nvidia
# Run all applications that go hand in hand w/ dwm
# dwmblocks &
# Start-up apps for dwm
st &
librewolf &
keepassxc &
discord &
while true
do
dwm # Begin dwm wrapper
done
# sudo /usr/bin/prime-switch
}
run_kde() {
export DESKTOP_SESSION=plasma
startplasma-x11
}
case $session in
i3|i3wm ) exec i3;;
kde ) export DESKTOP_SESSION=plasma ; exec startplasma-x11;;
dwm ) run_dwm ;;
# No known session, try to run it as command
esac
|