Advertisement
Guest User

my autostart on labwc

a guest
May 8th, 2024
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. # Example autostart file
  2.  
  3.  
  4. pcmanfm-qt --desktop
  5. waybar -c /etc/xdg/waybar/droplet/config >/dev/null 2>&1 &
  6. kitty >/dev/null 2>&1 &
  7.  
  8. # Configure output directives such as mode, position, scale and transform.
  9. # Use wlr-randr to get your output names
  10. # Example ~/.config/kanshi/config below:
  11. # profile {
  12. # output HDMI-A-1 position 1366,0
  13. # output eDP-1 position 0,0
  14. # }
  15. kanshi >/dev/null 2>&1 &
  16.  
  17. # Enable notifications. Typically GNOME/KDE application notifications go
  18. # through the org.freedesktop.Notifications D-Bus API and require a client such
  19. # as mako to function correctly. Thunderbird is an example of this.
  20. mako >/dev/null 2>&1 &
  21.  
  22. # Lock screen after 5 minutes; turn off display after another 5 minutes.
  23. #
  24. # Note that in the context of idle system power management, it is *NOT* a good
  25. # idea to turn off displays by 'disabling outputs' for example by
  26. # `wlr-randr --output <whatever> --off` because this re-arranges views
  27. # (since a837fef). Instead use a wlr-output-power-management client such as
  28. # https://git.sr.ht/~leon_plickat/wlopm
  29. swayidle -w \
  30. timeout 300 'swaylock -f -c 000000' \
  31. timeout 600 'wlopm --off \*' \
  32. resume 'wlopm --on \*' \
  33. before-sleep 'swaylock -f -c 000000' >/dev/null 2>&1 &
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement