Remove old scripts
This commit is contained in:
parent
84b0d44ac1
commit
43d4d0c365
2 changed files with 0 additions and 22 deletions
|
@ -1,15 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
# Script to disable for an hour or immediately continue wlsunset. 'Toggle'
|
||||
|
||||
# Check if wlsunset is still running
|
||||
pid=$(pgrep wlsunset)
|
||||
|
||||
if [[ -z ${pid} ]] ; then
|
||||
# Start wlsunset right away.
|
||||
wlsunset -l 50.50 -L 4.00 -t 3000 -T 6500 &
|
||||
else
|
||||
# Currently stop wlsunset but restart in an hour.
|
||||
kill ${pid}
|
||||
notify-send 'Stopping sunset' 'Restarting in an hour'
|
||||
at now +1 hours -f "${0}"
|
||||
fi
|
|
@ -1,7 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
# Ignore flake.nix and flake.lock
|
||||
# For using personal flakes in a project that does not provide and want flakes.
|
||||
# Syntaxis: git flake
|
||||
|
||||
git add --intent-to-add flake.nix flake.lock
|
||||
git update-index --assume-unchanged flake.nix
|
Loading…
Reference in a new issue