mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
29 lines
948 B
Text
29 lines
948 B
Text
# Example autostart file
|
|
|
|
# Set background color.
|
|
swaybg -c '#113344' >/dev/null 2>&1 &
|
|
|
|
# Configure output directives such as mode, position, scale and transform.
|
|
# Use wlr-randr to get your output names
|
|
# Example ~/.config/kanshi/config below:
|
|
# profile {
|
|
# output HDMI-A-1 position 1366,0
|
|
# output eDP-1 position 0,0
|
|
# }
|
|
kanshi >/dev/null 2>&1 &
|
|
|
|
# Launch a panel such as yambar or waybar.
|
|
waybar >/dev/null 2>&1 &
|
|
|
|
# Enable notifications. Typically GNOME/KDE application notifications go through the
|
|
# org.freedesktop.Notifications D-Bus API and require a client such as mako to
|
|
# function correctly. Thunderbird is an example of this.
|
|
mako >/dev/null 2>&1 &
|
|
|
|
# Lock screen after 5 minutes; turn off display after another 5 minutes
|
|
swayidle -w \
|
|
timeout 300 'swaylock -f -c 000000' \
|
|
timeout 600 'wlr-randr --output eDP-1 --off' \
|
|
resume 'wlr-randr --output eDP-1 --on' \
|
|
before-sleep 'swaylock -f -c 000000' >/dev/null 2>&1 &
|
|
|