mirror of
https://github.com/labwc/labwc.git
synced 2026-05-03 06:47:22 -04:00
Describe the shipped labwc-session.target in labwc(1) SESSION MANAGEMENT and add commented-out systemctl start/stop lines to the example autostart and shutdown files. Users on systemd-based distros can uncomment these to pull in graphical-session.target when labwc starts and tear it down cleanly on exit, without labwc itself mandating any specific init system.
48 lines
1.9 KiB
Text
48 lines
1.9 KiB
Text
# Example autostart file
|
|
|
|
# When running under systemd, uncomment the systemctl line below to pull in
|
|
# graphical-session.target via labwc-session.target. This lets systemd user
|
|
# services declaring WantedBy=graphical-session.target (panels, portals,
|
|
# notification daemons, etc.) start in sync with the labwc session. Enable
|
|
# individual services with: systemctl --user enable <unit>
|
|
#
|
|
# systemctl --user --no-block start labwc-session.target
|
|
|
|
# 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 &
|
|
|
|
# To delay the launch of a particular client it is suggested that the following
|
|
# syntax is used: ( sleep X ; foo ) &
|
|
# For example, with waybar a three second delay could be achieved with:
|
|
# ( sleep 3 ; 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.
|
|
#
|
|
# Note that in the context of idle system power management, it is *NOT* a good
|
|
# idea to turn off displays by 'disabling outputs' for example by
|
|
# `wlr-randr --output <whatever> --off` because this re-arranges windows
|
|
# (since a837fef). Instead use a wlr-output-power-management client such as
|
|
# https://git.sr.ht/~leon_plickat/wlopm
|
|
swayidle -w \
|
|
timeout 300 'swaylock -f -c 000000' \
|
|
timeout 600 'wlopm --off \*' \
|
|
resume 'wlopm --on \*' \
|
|
before-sleep 'swaylock -f -c 000000' >/dev/null 2>&1 &
|
|
|