summaryrefslogtreecommitdiff
path: root/.config/autostart/autostart.sh
blob: d6b54881feab7a5d2de1444a297a862826f8aaee (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

start(){
    emacs --daemon &
    pipewire-pulse &
    picom &
    xrandr --output DisplayPort-0 --off --output DisplayPort-1 --off --output DisplayPort-2 --primary --mode 2560x1440 --pos 1920x0 --rotate normal --output HDMI-A-0 --mode 1920x1080 --pos 0x0 --rotate normal &
    nitrogen --restore &
    setxkbmap -option caps:swapescape &
    bluetooth-autoconnect &
}

start