Compare commits
3 commits
3eb713aa90
...
a86036ebfd
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a86036ebfd | ||
![]() |
b7060ee406 | ||
![]() |
8c70b2bd12 |
7 changed files with 13 additions and 2 deletions
|
@ -165,8 +165,8 @@ class HostConfig:
|
||||||
temperature_path: str | None = None
|
temperature_path: str | None = None
|
||||||
terminal: str = "alacritty"
|
terminal: str = "alacritty"
|
||||||
lock_cmd: str = "swaylock -c 000000"
|
lock_cmd: str = "swaylock -c 000000"
|
||||||
display_on_cmd: str = "wlopm --on *"
|
display_on_cmd: str = "jdisplays on"
|
||||||
display_off_cmd: str = "wlopm --off *"
|
display_off_cmd: str = "jdisplays off"
|
||||||
use_jump_host: bool = False
|
use_jump_host: bool = False
|
||||||
inputs: list[InputConfig] = field(factory=list)
|
inputs: list[InputConfig] = field(factory=list)
|
||||||
outputs: list[OutputConfig] = field(factory=list)
|
outputs: list[OutputConfig] = field(factory=list)
|
||||||
|
|
BIN
raw/.local/share/backgrounds/stockton/3wide.jpg
Normal file
BIN
raw/.local/share/backgrounds/stockton/3wide.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 MiB |
BIN
raw/.local/share/backgrounds/stockton/center.jpg
Normal file
BIN
raw/.local/share/backgrounds/stockton/center.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 443 KiB |
BIN
raw/.local/share/backgrounds/stockton/left.jpg
Normal file
BIN
raw/.local/share/backgrounds/stockton/left.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 499 KiB |
BIN
raw/.local/share/backgrounds/stockton/right.jpg
Normal file
BIN
raw/.local/share/backgrounds/stockton/right.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 548 KiB |
|
@ -192,6 +192,7 @@ spawn-at-startup "wireplumber"
|
||||||
spawn-at-startup "waybar"
|
spawn-at-startup "waybar"
|
||||||
spawn-at-startup "xwayland-satellite" ":12"
|
spawn-at-startup "xwayland-satellite" ":12"
|
||||||
spawn-at-startup "wpaperd"
|
spawn-at-startup "wpaperd"
|
||||||
|
spawn-at-startup "swayidle"
|
||||||
|
|
||||||
environment {
|
environment {
|
||||||
DISPLAY ":12"
|
DISPLAY ":12"
|
||||||
|
|
10
templates/bin/jdisplays
Executable file
10
templates/bin/jdisplays
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
0|off) onoff=off ;;
|
||||||
|
1|on) onoff=on ;;
|
||||||
|
*) exit 1 ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
[ -e "$NIRI_SOCKET" ] && niri msg action power-$onoff-monitors \
|
||||||
|
|| wlopm --$onoff '*'
|
Loading…
Add table
Reference in a new issue