diff options
author | stmayer <stmayer@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-06-14 21:24:20 +0000 |
---|---|---|
committer | stmayer <stmayer@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-06-14 21:24:20 +0000 |
commit | 75b3e2a9d9d28e6a1a32e92bb90d530954321322 (patch) | |
tree | c7ec30d850ed644d30107afa1940e42d5ab1f373 /windows | |
parent | 22a40cd432399afeb3d41b7af2a61471624b728f (diff) |
ahk: ico automatisch gesetzt, falls dateien existieren
git-svn-id: https://svn.neo-layout.org@529 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows')
-rw-r--r-- | windows/autohotkey/README.txt | 4 | ||||
-rw-r--r-- | windows/autohotkey/neo20-all-in-one.ahk | 11 | ||||
-rw-r--r-- | windows/autohotkey/neo20-all-in-one.exe | bin | 227184 -> 232208 bytes |
3 files changed, 11 insertions, 4 deletions
diff --git a/windows/autohotkey/README.txt b/windows/autohotkey/README.txt index e8e9176..a32cfe5 100644 --- a/windows/autohotkey/README.txt +++ b/windows/autohotkey/README.txt @@ -31,8 +31,8 @@ auswählen -> Immer mit diesem Programm öffnen. === Icon === Will man ein spezielles Neo-Icon in der Taskleiste, kann man einfach die beiden Dateien neo.ico und neo_disabled.ico in den Ordner kopieren, in dem sich die -neo20-all-in-one.ahk befindet. Danach im ahk-Skript bei den globalen Schaltern -den Schalter für das Icon auf 1 setzen und das Skript (neu) starten. +neo20-all-in-one.ahk befindet. Danach das Skript neu laden oder starten. +In der .exe geschieht das automatisch. === Automatischer Start === Bei Bedarf kann man sich eine Verknüpfung mit neo20-all-in-one.ahk in den diff --git a/windows/autohotkey/neo20-all-in-one.ahk b/windows/autohotkey/neo20-all-in-one.ahk index 9a810ed..8fc6768 100644 --- a/windows/autohotkey/neo20-all-in-one.ahk +++ b/windows/autohotkey/neo20-all-in-one.ahk @@ -15,7 +15,10 @@ Ideen: - Symbol ändern (Neo-Logo abwarten)
- bei Ebene 4 rechte Hand (Numpad) z.B. Numpad5 statt 5 senden
CHANGEHISTORY:
- Aktuelle Revision (von Matthias Berg):
+ aktuelle Revision (vos Stefan Mayer)
+ - Icon wird automatisch geladen, falls .ico-Dateien im selbem Ordner
+ - in der .exe sind die .ico mitgespeichert und werden geladen
+ Revision 528 (von Matthias Berg):
- Neo-Icon
- Neo-Prozess jetzt automatisch auf hoher Prioritaet
(siehe globale Schalter)
@@ -63,8 +66,12 @@ ; Sollen Ebenen 1-4 ignoriert werden? (kann z.B. vom dll Treiber übernommen werden) Ja = 1, Nein = 0
nurEbenenFuenfUndSechs = 0
-iconBenutzen = 0
+if FileExist("neo.ico") && FileExist("neo_disabled.ico")
+ iconBenutzen = 1
+FileInstall, neo.ico, neo.ico, 1
+FileInstall, neo_disabled.ico, neo_disabled.ico, 1
+
Process, Priority,, High
; aus Noras script kopiert:
diff --git a/windows/autohotkey/neo20-all-in-one.exe b/windows/autohotkey/neo20-all-in-one.exe Binary files differindex 362ff1d..65079f6 100644 --- a/windows/autohotkey/neo20-all-in-one.exe +++ b/windows/autohotkey/neo20-all-in-one.exe |