mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-05 18:38:26 +02:00
- Merged Dev into alpha
This commit is contained in:
@@ -5,6 +5,25 @@
|
|||||||
DetectHiddenWindows, On
|
DetectHiddenWindows, On
|
||||||
Run, %A_ScriptDir%\detectUSB.ahk
|
Run, %A_ScriptDir%\detectUSB.ahk
|
||||||
|
|
||||||
|
; Enable Left clicks on Kinto Icon
|
||||||
|
; https://www.autohotkey.com/boards/viewtopic.php?t=9501
|
||||||
|
OnMessage(0x404, "AHK_NOTIFYICON")
|
||||||
|
|
||||||
|
AHK_NOTIFYICON(wParam, lParam)
|
||||||
|
{
|
||||||
|
if (lParam = 0x202) { ; user left-clicked tray icon
|
||||||
|
;ADD ANY SUBROUTINE OR FUNCTION HERE
|
||||||
|
Menu, Tray, Show
|
||||||
|
return
|
||||||
|
}
|
||||||
|
else if (lParam = 0x203) { ; user double left-clicked tray icon
|
||||||
|
;ADD ANY SUBROUTINE OR FUNCTION HERE
|
||||||
|
Menu, Tray, Show
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
; End Enable Left clicks
|
||||||
|
|
||||||
; I_Icon = %A_ScriptDir%\assets\kinto-white.ico ; MacModifiers
|
; I_Icon = %A_ScriptDir%\assets\kinto-white.ico ; MacModifiers
|
||||||
; IfExist, %I_Icon% ; MacModifiers
|
; IfExist, %I_Icon% ; MacModifiers
|
||||||
; Menu, Tray, Icon, %I_Icon%,, 1 ; MacModifiers
|
; Menu, Tray, Icon, %I_Icon%,, 1 ; MacModifiers
|
||||||
|
@@ -118,7 +118,6 @@ function trayApp {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function budgieUninstall {
|
function budgieUninstall {
|
||||||
if [ -f /usr/bin/budgie-desktop ];then
|
if [ -f /usr/bin/budgie-desktop ];then
|
||||||
read -n 1 -s -r -p "Your system may log you off immediately during the restoration of budgie-daemon. Press any key to continue..."
|
read -n 1 -s -r -p "Your system may log you off immediately during the restoration of budgie-daemon. Press any key to continue..."
|
||||||
|
Reference in New Issue
Block a user