blob: c78f35e407008c41b512bf7d6416423221066e16 (
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
|
#!/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.
# Programs for creating desktop
dwmstatus & # Status bar
picom & # Compositor
# Programs to boot on startup
st &
librewolf &
# Must go last
randombg & # Set a random background. Update to changebg & once theming is complete.
while true
do
dwm
done
|