blob: b2f8a4340abf725ca92d87a058d10ac07cc9178e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# General Configurations
setxkbmap gb
export SHELL=/bin/zsh
wmname LG3D & # For getting Java applications, e.g. Pycharm, Rider to work.
# Programs for creating desktop
dwmstatus & # Status bar
picom & # Compositor
randombg & # Set a random background.
# Programs to boot on startup
st &
librewolf &
while true
do
dwm
done
|