kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

tlp (119B)


      1 #!/bin/sh
      2 
      3 case $1 in
      4 	-s)
      5 		tlp init start
      6 		;;
      7 	-k)
      8 		tlp init stop
      9 		;;
     10 	*)
     11 		echo "usage: $0 -s|-k"
     12 		exit 1
     13 esac
     14