mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-15 01:57:16 +00:00
ItsDrike
ac23da55c5
This configuration was simply copied from my old Arch Linux system. There are some issues that still need to be solved, namely with fonts and missing bitcoin price script, but it's mostly minor.
13 lines
281 B
Bash
13 lines
281 B
Bash
#!/bin/env bash
|
|
|
|
# shellcheck source=include
|
|
source "./scripts/include"
|
|
|
|
# Consider usning a file as a flag for whether nightlight is on or off
|
|
# as we might be in transition state and just killing the program might
|
|
# not be enough.
|
|
|
|
if [ "$1" = "toggle" ]; then
|
|
gammastep -x
|
|
fi
|