mirror of
https://github.com/lxsang/meta-rpi-diya.git
synced 2025-07-19 23:40:07 +02:00
add custom config for wayland compositor and sfwbar
This commit is contained in:
38
recipes-wlroots/labwc/files/autostart
Normal file
38
recipes-wlroots/labwc/files/autostart
Normal file
@ -0,0 +1,38 @@
|
||||
# Example autostart file
|
||||
|
||||
# Set background color
|
||||
swaybg -i /etc/labwc/wpp.png >/dev/null 2>&1 &
|
||||
|
||||
wlr-randr --output DPI-1 --transform 90
|
||||
|
||||
# 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 1 minute; 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 views
|
||||
# (since a837fef). Instead use a wlr-output-power-management client such as
|
||||
# https://git.sr.ht/~leon_plickat/wlopm
|
||||
swayidle -w timeout 60 'wlopm --off DPI-1' resume 'wlopm --on DPI-1' &
|
||||
|
||||
SFWBAR_CNF="/etc/sfwbar/sfwbar.config"
|
||||
if [ -e "$HOME/.config/sfwbar/sfwbar.config" ]; then
|
||||
SFWBAR_CNF="$HOME/.config/sfwbar/sfwbar.config"
|
||||
fi
|
||||
sfwbar -f "$SFWBAR_CNF"
|
Reference in New Issue
Block a user