labwc/docs/autostart

34 lines
1.2 KiB
Text
Raw Normal View History

# 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 &
2021-11-28 22:54:22 +00:00
# Lock screen after 5 minutes
#
# Note that we do not yet support turning off displays in the context of idle
# system power management. Disabling outputs, for example by
# `wlr-randr --output whatever --off` re-arranges views (since a837fefc),
# so is not a good idea.
# A swayidle-friendly implementation may be written using
# wlr-output-power-management-unstable-v1.xml and could then work with a client
# such as https://git.sr.ht/~leon_plickat/wlopm
swayidle -w timeout 300 'swaylock -f -c 000000' >/dev/null 2>&1 &
2021-11-28 22:54:22 +00:00