Add templating for dunstrc (monitor from env)
This commit is contained in:
parent
1a7332365c
commit
eab72a3328
3 changed files with 11 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
### Display ###
|
### Display ###
|
||||||
|
|
||||||
# Which monitor should the notifications be displayed on.
|
# Which monitor should the notifications be displayed on.
|
||||||
monitor = 0
|
monitor = {{ env.DUNST_MONITOR }}
|
||||||
|
|
||||||
# Display notification on focused monitor. Possible modes are:
|
# Display notification on focused monitor. Possible modes are:
|
||||||
# mouse: follow mouse pointer
|
# mouse: follow mouse pointer
|
8
.config/env.d/98-local-defaults
Executable file
8
.config/env.d/98-local-defaults
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
export AUTOSTART_DISPLAY=""
|
||||||
|
|
||||||
|
export MONITOR_PRIMARY="primary"
|
||||||
|
export MONITOR_SECONDARY="secondary"
|
||||||
|
|
||||||
|
export DUNST_MONITOR="0"
|
|
@ -4,3 +4,5 @@ export AUTOSTART_DISPLAY="Hyprland"
|
||||||
|
|
||||||
export MONITOR_PRIMARY="DisplayPort-0"
|
export MONITOR_PRIMARY="DisplayPort-0"
|
||||||
export MONITOR_SECONDARY="HDMI-A-0"
|
export MONITOR_SECONDARY="HDMI-A-0"
|
||||||
|
|
||||||
|
export DUNST_MONITOR="$MONITOR_SECONDARY"
|
||||||
|
|
Loading…
Reference in a new issue