Browse Source

Update asus-sign-out.py

Coder 4 years ago
parent
commit
38f655de53
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/asus-sign-out.py

+ 3 - 3
src/asus-sign-out.py

@@ -3,17 +3,17 @@
 
 import tkinter as tk, time, os
 
-time.sleep(10)
+time.sleep(1795)
 win = tk.Tk()
 win.iconbitmap('C:\icon-warning.ico')
 win.geometry("700x150")
 win.configure(bg="yellow")
 win.title("AUTOMATIC LOGOFF")
-warnLabelOne = tk.Label(win, text ='WARNING: YOU WILL BE LOGGED OUT IN 10 SECONDS',font=("Arial bold", 18),fg="red",bg="yellow")
+warnLabelOne = tk.Label(win, text ='WARNING: YOU WILL BE LOGGED OUT IN 35 SECONDS',font=("Arial bold", 18),fg="red",bg="yellow")
 warnLabelTwo = tk.Label(win, text='PLEASE SAVE ANY OPENED FILES',font=("Arial bold", 18),fg="red",bg="yellow")
 warnLabelOne.pack()
 warnLabelTwo.pack()
 win.after(5000, lambda: win.destroy())
 win.mainloop()
-time.sleep(5)
+time.sleep(30)
 os.system("shutdown -l")