Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0b72650
Initial version... we use hibernate instead of killing session. We al…
JimDunphy Jul 24, 2015
1ce7f47
initial/tesing how to use github
JimDunphy Jul 24, 2015
e4dd7a6
more info about timestamp entry in /tmp
JimDunphy Jul 24, 2015
65da7b3
formatting issues so reference a file to generate the key
JimDunphy Jul 24, 2015
46f88c8
init file
JimDunphy Jul 24, 2015
486e55f
added package
JimDunphy Jul 24, 2015
c0b9e7e
package
JimDunphy Jul 24, 2015
f515243
Operation text
JimDunphy Jul 24, 2015
6730d66
comment
JimDunphy Jul 24, 2015
c8e2ab6
update
JimDunphy Jul 24, 2015
d9dc3de
comment
JimDunphy Jul 24, 2015
6b957e2
update
JimDunphy Jul 24, 2015
c7537e0
update/removed git from archive
JimDunphy Jul 25, 2015
f91a910
formatting
JimDunphy Jul 26, 2015
79b7a4d
formatting
JimDunphy Jul 26, 2015
8c3a2ef
document how we invoke our version
JimDunphy Jul 25, 2017
2a8cafe
typo
JimDunphy Jul 25, 2017
314269c
added latest kidtimer
JimDunphy Jul 28, 2017
06b8ab4
update docs
JimDunphy Jul 28, 2017
781bb94
update docs
JimDunphy Jul 28, 2017
e356fb3
Add sound playing
bsbernd Dec 26, 2025
611c671
Mark variables as local
bsbernd Dec 26, 2025
5bdcc82
Change indentation to 4 chars
bsbernd Dec 26, 2025
c00613a
Remove the update feature
bsbernd Dec 26, 2025
7678120
Recheck in go_recheck_logout()
bsbernd Dec 26, 2025
db5b745
Add a variable for the shutdown file
bsbernd Dec 26, 2025
5d4bb6c
Use curly braces for SOUND_FILE
bsbernd Dec 26, 2025
6a0d9d8
Add KILLALL_BASE and use /var/run
bsbernd Dec 26, 2025
53e9bd0
Lock the account when time is over
bsbernd Dec 26, 2025
b983122
Remove the debs
bsbernd Dec 26, 2025
ff4819a
Merge pull request #1 from bsbernd/updates
JimDunphy Dec 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CODE/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Package: kidtimer
Version: 2.3-1
Version: 1.0-0
Section: utils
Priority: optional
Architecture: all
Depends: at, libnotify-bin, bsdutils
Installed-Size: 8
Maintainer: Michael Groves <grover66@gmail.com>
Homepage: http://github.com/grover66/kidtimer
Maintainer: Jim Dunphy <Jim.Dunphy@gmail.com>
Homepage: http://github.com/JimDunphy/kidtimer
Description: Set daily limits on computer time.
6 changes: 3 additions & 3 deletions CODE/etc/cron.d/kidtimer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0 * * * * root /usr/local/bin/kidtimer hourly
0 0 * * * root /usr/local/bin/kidtimer daily
#0 * * * * root /usr/local/bin/kidtimer hourly
#0 0 * * * root /usr/local/bin/kidtimer daily
* * * * * root /usr/local/bin/kidtimer check
@reboot root /usr/local/bin/kidtimer daily
#@reboot root /usr/local/bin/kidtimer daily
12 changes: 12 additions & 0 deletions CODE/usr/local/bin/99zzkidtimer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh

# This script makes kidtimer update account status when the machine is woken up.
# For a laptop, these are the closest parallels to turning on a desktop.
# /usr/lib/pm-utils/sleep.d --- so kidtimer will run when my computer is
# awoken from sleep

case $1 in
resume|thaw)
/usr/local/bin/kidtimer check
;;
esac
5 changes: 5 additions & 0 deletions CODE/usr/local/bin/README.JAD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Original from:
https://github.com/grover66/kidtimer

# provided the print out to my 10 year old to see if she could find holes
enscript --pretty-print --color -2r -MLetter -PHP-Officejet-Pro-8600 kidtimer
2 changes: 2 additions & 0 deletions CODE/usr/local/bin/TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
kids time down every 60mins
code to get more time
Loading