Compare commits

...

2 Commits

Author SHA1 Message Date
Sravan Balaji
59f07db6ac Set WirePlumber volume to 25% on startup 2025-05-06 11:26:27 -04:00
Sravan Balaji
69ef245273 Add some delays to hypridle / hyprlock launch so blur gets applied 2025-05-03 10:38:12 -04:00
3 changed files with 10 additions and 8 deletions

View File

@@ -10,7 +10,7 @@
- [[#variables][Variables]] - [[#variables][Variables]]
- [[#autostart][Autostart]] - [[#autostart][Autostart]]
- [[#background-processes][Background Processes]] - [[#background-processes][Background Processes]]
- [[#display--compositor-setup][Display / Compositor Setup]] - [[#desktop-setup][Desktop Setup]]
- [[#applications][Applications]] - [[#applications][Applications]]
- [[#environment-variables][Environment Variables]] - [[#environment-variables][Environment Variables]]
- [[#permissions][Permissions]] - [[#permissions][Permissions]]
@@ -148,12 +148,13 @@ exec-once = uwsm app -- wl-paste --type text --watch cliphist store &
exec-once = uwsm app -- wl-paste --type image --watch cliphist store & exec-once = uwsm app -- wl-paste --type image --watch cliphist store &
#+END_SRC #+END_SRC
*** Display / Compositor Setup *** Desktop Setup
#+BEGIN_SRC conf :tangle hyprland.conf #+BEGIN_SRC conf :tangle hyprland.conf
exec-once = uwsm app -- shikane & exec-once = uwsm app -- shikane &
exec-once = uwsm app -- $HOME/.azotebg-hyprland & exec-once = uwsm app -- $HOME/.azotebg-hyprland &
exec-once = uwsm app -- gammastep -x & exec-once = uwsm app -- gammastep -x &
exec-once = uwsm app -- wpctl set-volume @DEFAULT_AUDIO_SINK@ 25% &
#+END_SRC #+END_SRC
*** Applications *** Applications
@@ -740,8 +741,8 @@ screencopy {
#+BEGIN_SRC conf :tangle hypridle.conf #+BEGIN_SRC conf :tangle hypridle.conf
general { general {
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances lock_cmd = pgrep hyprlock || (hyprlock && sleep 3) # avoid starting multiple hyprlock instances
before_sleep_cmd = loginctl lock-session # lock before suspend before_sleep_cmd = loginctl lock-session && sleep 3 # lock before suspend
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key to turn on the display after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key to turn on the display
ignore_dbus_inhibit = false ignore_dbus_inhibit = false
ignore_systemd_inhibit = false ignore_systemd_inhibit = false

View File

@@ -1,6 +1,6 @@
general { general {
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances lock_cmd = pgrep hyprlock || (hyprlock && sleep 3) # avoid starting multiple hyprlock instances
before_sleep_cmd = loginctl lock-session # lock before suspend before_sleep_cmd = loginctl lock-session && sleep 3 # lock before suspend
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key to turn on the display after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key to turn on the display
ignore_dbus_inhibit = false ignore_dbus_inhibit = false
ignore_systemd_inhibit = false ignore_systemd_inhibit = false

View File

@@ -14,6 +14,7 @@ exec-once = uwsm app -- wl-paste --type image --watch cliphist store &
exec-once = uwsm app -- shikane & exec-once = uwsm app -- shikane &
exec-once = uwsm app -- $HOME/.azotebg-hyprland & exec-once = uwsm app -- $HOME/.azotebg-hyprland &
exec-once = uwsm app -- gammastep -x & exec-once = uwsm app -- gammastep -x &
exec-once = uwsm app -- wpctl set-volume @DEFAULT_AUDIO_SINK@ 25% &
exec-once = uwsm app -- blueman-applet & exec-once = uwsm app -- blueman-applet &
exec-once = uwsm app -- nm-applet & exec-once = uwsm app -- nm-applet &