LabWC configs
This commit is contained in:
parent
45a3802a3d
commit
32856f0147
3 changed files with 46 additions and 1 deletions
41
Config/labwc/autostart
Normal file
41
Config/labwc/autostart
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Example autostart file
|
||||
|
||||
# Set background color.
|
||||
swaybg -i '~/.local/share/wallpalpers/Among The Trees.png' >/dev/null 2>&1 &
|
||||
|
||||
# Start Pipewire
|
||||
pipewire >/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.
|
||||
#
|
||||
# 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 300 'swaylock -f -c 000000' \
|
||||
timeout 600 'wlopm --off \*' \
|
||||
resume 'wlopm --on \*' \
|
||||
before-sleep 'swaylock -f -c 000000' >/dev/null 2>&1 &
|
||||
|
||||
# Set display resolution
|
||||
wlr-randr --output Virtual-1 --mode 1920x1080 >/dev/null 2>&1 &
|
||||
|
|
@ -17,7 +17,8 @@
|
|||
## For further details, see xkeyboard-config(7)
|
||||
##
|
||||
|
||||
# XKB_DEFAULT_LAYOUT=se
|
||||
XKB_DEFAULT_LAYOUT=us
|
||||
XKB_DEFAULT_VARIANT=dvorak
|
||||
# XKB_DEFAULT_LAYOUT=se,us(intl)
|
||||
# XKB_DEFAULT_OPTIONS=grp:alt_shift_toggle
|
||||
# XKB_DEFAULT_OPTIONS=grp:shift_caps_toggle
|
||||
|
|
3
Config/labwc/themerc-override
Normal file
3
Config/labwc/themerc-override
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Change color of top left titlebor buttons
|
||||
window.active.button.menu.unpressed.image.color: #8087a2
|
||||
window.inactive.button.menu.unpressed.image.color: #494d64
|
Loading…
Reference in a new issue