Skip to content

Commit

Permalink
Better icons and quicker reaction time of script
Browse files Browse the repository at this point in the history
  • Loading branch information
Torxgewinde authored May 4, 2021
1 parent 11ee489 commit a9cbe35
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions capslock.au3
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
#comments-start
********************************************************************************
# #
# A simple Windows-Tray-Icon-Tool to indicate and set the Caps Lock status #
# #
# #
# Copyright (C) 2021 Tom Stöveken #
# #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; version 2 of the License. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
********************************************************************************
#comments-end

#pragma compile(Out, capslock.exe)
#pragma compile(UPX, True)
#pragma compile(Icon, capslock.ico)
#pragma compile(Compression, 9)
#pragma compile(x64, true)

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=capslock_unknown.ico
#AutoIt3Wrapper_Icon=capslock.ico
#AutoIt3Wrapper_UseUpx=y
#AutoIt3Wrapper_Run_Au3Stripper=y

Expand Down Expand Up @@ -86,6 +116,6 @@ While True
$CapsLockLastState = False
EndIf

Sleep(100)
;Sleep(100)
$FirstRun = False
WEnd
WEnd
Binary file added capslock.ico
Binary file not shown.
Binary file modified capslock_off.ico
Binary file not shown.
Binary file modified capslock_on.ico
Binary file not shown.
Binary file modified capslock_unknown.ico
Binary file not shown.

0 comments on commit a9cbe35

Please sign in to comment.