19 lines
390 B
Bash
19 lines
390 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ $(cat /proc/acpi/button/lid/LID0/state | grep -c closed) -eq 1 ]; then
|
|
xrandr --output DP-0 --off
|
|
xrandr --output HDMI-0 --left-of DP-1
|
|
fi
|
|
# xlayoutdisplay -o DP-2 -o HDMI-1
|
|
ulauncher &
|
|
flatpak run org.flameshot.Flameshot &
|
|
picom --daemon
|
|
xpad &
|
|
blueman-applet &
|
|
# albert &
|
|
# pika-backup-monitor &
|
|
nm-applet &
|
|
light-locker &
|
|
|
|
export GTK_THEME=Adwaita:dark
|