add some ascii art
This commit is contained in:
parent
9b7d00648e
commit
ab8f81db2c
28
D3K.ahk
28
D3K.ahk
@ -1,4 +1,4 @@
|
||||
#Include, func.ahk
|
||||
#Include, func.ahk
|
||||
|
||||
Menu, Tray, Icon, shell32.dll, 283 ; Set the tray icon to a keyboard
|
||||
Menu, Tray, Add, MouseMover ; Add item to the tray to move the mouse
|
||||
@ -497,13 +497,27 @@ Return
|
||||
|
||||
:*:[shrug::¯\_(ツ)_/¯
|
||||
:*:]shrug::¯\_(ツ)_/¯
|
||||
::]yee::
|
||||
yee()
|
||||
{
|
||||
asc_yee := ["░░░░░░░░░░░░░▄███▄▄▄░░░░░░░","░░░░░░░░░▄▄▄██▀▀▀▀███▄░░░░░","░░░░░░░▄▀▀░░░░░░░░░░░▀█░░░░","░░░░▄▄▀░░░░░░░░░░░░░░░▀█░░░","░░░█░░░░░▀▄░░▄▀░░░░░░░░█░░░","░░░▐██▄░░▀▄▀▀▄▀░░▄██▀░▐▌░░░","░░░█▀█░▀░░░▀▀░░░▀░█▀░░▐▌░░░","░░░█░░▀▐░░░░░░░░▌▀░░░░░█░░░","░░░█░░░░░░░░░░░░░░░░░░░█░░░","░░░░█░░▀▄░░░░▄▀░░░░░░░░█░░░","░░░░█░░░░░░░░░░░▄▄░░░░█░░░░","░░░░░█▀██▀▀▀▀██▀░░░░░░█░░░░","░░░░░█░░▀████▀░░░░░░░█░░░░░","░░░░░░█░░░░░░░░░░░░▄█░░░░░░","░░░░░░░██░░░░░█▄▄▀▀░█░░░░░░","░░░░░░░░▀▀█▀▀▀▀░░░░░░█░░░░░", "yee ░░░░░█░░░░░░░░░░░░█░░░░"]
|
||||
|
||||
For index, value in asc_yee
|
||||
asciiart(art)
|
||||
{
|
||||
For index, value in art
|
||||
{
|
||||
SendInput, %value%{ShiftDown}{Enter}{ShiftUp}
|
||||
}
|
||||
}
|
||||
Return
|
||||
}
|
||||
|
||||
:*:]yee::
|
||||
asc_yee := ["░░░░░░░░░░░░░▄███▄▄▄░░░░░░░","░░░░░░░░░▄▄▄██▀▀▀▀███▄░░░░░","░░░░░░░▄▀▀░░░░░░░░░░░▀█░░░░","░░░░▄▄▀░░░░░░░░░░░░░░░▀█░░░","░░░█░░░░░▀▄░░▄▀░░░░░░░░█░░░","░░░▐██▄░░▀▄▀▀▄▀░░▄██▀░▐▌░░░","░░░█▀█░▀░░░▀▀░░░▀░█▀░░▐▌░░░","░░░█░░▀▐░░░░░░░░▌▀░░░░░█░░░","░░░█░░░░░░░░░░░░░░░░░░░█░░░","░░░░█░░▀▄░░░░▄▀░░░░░░░░█░░░","░░░░█░░░░░░░░░░░▄▄░░░░█░░░░","░░░░░█▀██▀▀▀▀██▀░░░░░░█░░░░","░░░░░█░░▀████▀░░░░░░░█░░░░░","░░░░░░█░░░░░░░░░░░░▄█░░░░░░","░░░░░░░██░░░░░█▄▄▀▀░█░░░░░░","░░░░░░░░▀▀█▀▀▀▀░░░░░░█░░░░░", "yee ░░░░░█░░░░░░░░░░░░█░░░░"]
|
||||
asciiart(asc_yee)
|
||||
Return
|
||||
|
||||
:*:]micmute::
|
||||
mic_mute := ["░░░░░░░░░░░░░░░░░░░░░░░░░░", "░░░░░░░░█▄░▄█░█░█▀▀░░░░░░░", "░░░░░░░░█░▀░█░█░█░░░░░░░░░", "░░░░░░░░▀░░░▀░▀░▀▀▀░░░░░░░", "░░█▄░▄█░█░░█░▀█▀░█▀▀░█▀▄░░", "░░█░▀░█░█░░█░░█░░█▀▀░█░█░░", "░░▀░░░▀░▀▀▀▀░░▀░░▀▀▀░▀▀░░░", "░░░░░░░░░░░░░░░░░░░░░░░░░░"]
|
||||
asciiart(mic_mute)
|
||||
Return
|
||||
|
||||
:*:]sunglass::
|
||||
sunglass := ["▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄", "█░░░░░░░░▀█▄▀▄▀██████░▀█▄▀▄▀██████░", "░░░░░░░░░░░▀█▄█▄███▀░░░▀██▄█▄███▀░"]
|
||||
asciiart(sunglass)
|
||||
Return
|
Loading…
Reference in New Issue
Block a user