~ruther/guix-config

cdc9bac15809f3b2570a50396929eea93177d10e — Rutherther 7 months ago f3901ce
feat: add dwl start scripts
A home/dotfiles/dwl/start-dwl => home/dotfiles/dwl/start-dwl +9 -0
@@ 0,0 1,9 @@
#!/usr/bin/env bash

export XDG_CURRENT_DESKTOP="wlroots"
export XDG_BACKEND="wayland"
export QT_QPA_PLATFORM="wayland"
export MOZ_ENABLE_WAYLAND="1"
export _JAVA_AWT_WM_NONREPARENTING="1"

dwl -s "~/.sessions/start-dwl-internal"

A home/dotfiles/dwl/start-dwl-internal => home/dotfiles/dwl/start-dwl-internal +28 -0
@@ 0,0 1,28 @@
#!/usr/bin/env bash

dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP DISPLAY
waybar &
# wlr-randr ...
nm-applet &
blueman-applet &
emacs --daemon &

# do not error! Also turn on the internal monitor if this failed.
wlr-randr \
  --output DP-9 --pos 0,0 \
  --output DP-8 --pos 3840,0 \
  --output DP-7 --pos 1920,0 \
  --output eDP-1 --off || \
\ #or
  wlr-randr --output eDP-1 --on

swayidle -w \
  timeout 300 '~/.sessions/wlopm-all-screens off' \
  resume '~/.sessions/wlopm-all-screens on' \
\
  timeout 1800 'loginctl suspend' \
  timeout 30 'makoctl mode -a idle' \
  resume 'makoctl mode -r idle' \
\
  before-sleep 'swaylock -Ff' \
  lock 'swaylock -Ff' &
\ No newline at end of file

A home/dotfiles/dwl/wlopm-all-screens => home/dotfiles/dwl/wlopm-all-screens +4 -0
@@ 0,0 1,4 @@
#!/usr/bin/env bash

screens=$(wlopm | awk '{print $1}')
echo "$screens" | xargs -l wlopm --$1

M home/home-configuration.scm => home/home-configuration.scm +6 -0
@@ 94,6 94,12 @@
                    (".config/mako/config" ,(local-file "dotfiles/mako"))
                    (".config/mimeapps.list" ,(local-file "dotfiles/mimeapps.list"))

                    ;; Temporary until I figure out how to write those in Guile,
                    ;; and put services into shepherd ones
                    (".sessions/start-dwl" ,(local-file "dotfiles/dwl/start-dwl"))
                    (".sessions/start-dwl-internal" ,(local-file "dotfiles/dwl/start-dwl-internal"))
                    (".sessions/wlopm-all-screens" ,(local-file "dotfiles/dwl/wlopm-all-screens"))

                    (".config/dwl/scripts/print.sh" ,(local-file "dotfiles/dwl/print.sh"))

                    (".config/zsh/plugins" ,#~(string-append #$(directory-union

Do not follow this link