22 lines
360 B
Bash
Executable File
22 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# set keyboard layout
|
|
setxkbmap -layout za
|
|
|
|
# start programs
|
|
fcitx -d &
|
|
nextcloud &
|
|
dunst &
|
|
picom &
|
|
nm-applet &
|
|
|
|
# adjust screens on nazarick
|
|
~/scripts/fix_screens.sh
|
|
|
|
# launch polybar
|
|
~/scripts/polybar.sh &
|
|
|
|
# wallpaper
|
|
# feh --bg-scale $HOME/data/nextcloud/Wallpaper/wallpaper.png
|
|
asetroot $HOME/data/nextcloud/Wallpaper/Animated/Current/ -t 50 &
|