1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-25 20:58:37 -06:00

Switch to bash

This commit is contained in:
Sayantan Santra 2022-11-06 22:08:18 -06:00
parent 7b1c496add
commit 1b3a632171

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# this is a script to set my external monitor's brightness
# to high (70%) or low (40%) automatically according to day/night.
@ -26,7 +26,7 @@
[ -z "$XDG_CONFIG_HOME" ] && confdir="/home/sintan/.config" || confdir="$XDG_CONFIG_HOME"
# read from the config file
if test -f $confdir/latlong.toml ; then
if [ -f $confdir/latlong.toml ]; then
source $confdir/latlong.toml
else
echo "No config file found!"