blob: 5636217c93487c43e4982c211c9e945cfa73b19d (
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
|
#
# These things are run when an Openbox X Session is started.
#
xhost +si:localuser:root # fixes unable to open display errors: https://askubuntu.com/a/1130413
tail -n 1 -f /var/log/Xorg.0.log | while read # execute stuff when resolution (mostly) changes
do
~/.fehbg & # wallpaper
lwa-hot-corners ~/.lwarc & # hot corners
done &
xcape -e 'Super_L=Super_L|P' & # used for the "windows" menu
dunst & # notification daemon
lxpolkit & # polkit
barrier & # using mouse & keyboard on other computers while connected to wifi
xautolock -detectsleep -secure -time 15 -locker ~/.i3lock/lock.sh & # auto lock screen
xss-lock -- .i3lock/lock.sh suspend & # lock screen on lid closing; you'll also need to uncomment the HandleLidSwitch variable and assign to it "lock" (HandleLidSwitch=lock) inside /etc/systemd/logind.conf
tint2 & # taskbar
picom --experimental-backends & # compositor
setxkbmap -layout "us,bg" -variant ",phonetic" -option "grp:alt_shift_toggle" & # keyboard switching
flameshot & # screenshot utility
redshift-gtk & # screen color temperature changer
copyq & # clipboard manager
gtk-launch min &
gtk-launch discord &
gtk-launch nextcloud-desktop &
gtk-launch rambox &
gtk-launch electron-mail &
/opt/Caprine.AppImage &
~/dunst-toggler-applet.sh &
|