7 lines
130 B
Bash
Executable file
7 lines
130 B
Bash
Executable file
#!/bin/env sh
|
|
|
|
if [[ $TARGET_MODE == 'light' ]]; then
|
|
hyprctl hyprsunset identity
|
|
else
|
|
hyprctl hyprsunset temperature 5000
|
|
fi
|