Jump to content
View in the app

A better way to browse. Learn more.

Obsidian Forum Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

kulmegil

Members
  • Joined

  • Last visited

Everything posted by kulmegil

  1. A pretty simple AutoHotkey_L example, hope will be useful to some1. I rely on GetKeyState() and a Loop (run every 30ms) P.S. I'm new to AHK scripts so avoid tech. questions. Works for me, hopefully will for You also, but don't bash me if it doesn't. #Persistent HotKeys := Object(), HotKeyStates := Object() ; Config HotKeys here.. HotKeys["Up"] := "w"; arrows -> WSAD HotKeys["Down"] := "s" HotKeys["Left"] := "a" HotKeys["Right"] := "d" HotKeys["Backspace"] := "Esc" HotKeys["Home"] := "c"; Show character HotKeys["End"] := "f"; Inventory HotKeys["NumpadDot"] := "r"; Show path to quest HotKeys["Delete"] := "q"; Toggle 1H/2H HotKeys["Numpad0"] := "e"; Interact HotKeys["Numpad1"] := "1"; Power 1 ; Mute default keys for key in HotKeys { Hotkey, %key%, mute } SetTimer, checkKeysStates, 30 return ; Mouse binds work great without workarounds XButton1::Space; block key XButton2::1 ; power 1 key checkKeysStates: { for key1, key2 in HotKeys { if (GetKeyState(key1, "L")) { if (HotKeyStates[key1] != 1) { Send, {%key2% down} HotKeyStates[key1] := 1 } } else { if (HotKeyStates[key1] == 1) { Send, {%key2% up} HotKeyStates[key1] := 0 } } } return } mute: return

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.