initial commit

This commit is contained in:
2024-07-16 01:25:46 -04:00
commit 139062a947
53 changed files with 8731 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
@echo off
shutdown /r /f /t 0

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

View File

@@ -0,0 +1,47 @@
; ENVIRONMENT
;------------------------------------------------
#Requires AutoHotkey v1.0
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
;#Warn ; Enable warnings to assist with detecting common errors.
;DetectHiddenWindows, On
#SingleInstance, Force
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;SetKeyDelay, 500
CoordMode, ToolTip, Screen
CoordMode, Mouse, Screen
;#NoTrayIcon
; Notes/Extra Info/#Includes
;------------------------------------------------
; #Include C:\Users\%A_Username%\Syncthing\Scripts\AutoHotKey\RadialMenu\My codes\My Global Variables.ahk
;Menu, Tray, Icon, %A_ICODir%\ICONAME
; VARIABLES
;------------------------------------------------
; MAIN SCRIPT
;------------------------------------------------
run %comspec% /k shutdown /r /f /t 0
; Functions
;------------------------------------------------
; Misc
;------------------------------------------------
; Escape::ExitApp

Binary file not shown.