Skip to content

Instantly share code, notes, and snippets.

View ohsevin's full-sized avatar
🤞
h🔑🔑ding

✘ ⓞⓗⓢⓔⓥ.ⓘⓝ ✘ ohsevin

🤞
h🔑🔑ding
View GitHub Profile

adb and fastboot must know

Install android SDK (bottom of the page) or full android studio if you need to develop on android.

fastboot looks like adb but it is used when device is in bootloader (or fastboot).

Check connected devices

adb:

@ohsevin
ohsevin / JetBrainsMono Nerd Font.css
Created November 23, 2022 09:57 — forked from chuseman/JetBrainsMono Nerd Font Mono v3.3.0.css
JetBrains Mono Nerd Fonts for Blink Shell
@font-face {
font-family: "JetBrainsMono Nerd Font";
font-style: normal;
font-weight: 100;
src: url('https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/JetBrainsMono/Ligatures/Thin/complete/JetBrains%20Mono%20Thin%20Nerd%20Font%20Complete.ttf') format('truetype');
}
@font-face {
font-family: "JetBrainsMono Nerd Font";
font-style: normal;
@ohsevin
ohsevin / volume_scroll.ahk
Created December 11, 2022 10:08 — forked from thefloodshark/volume_scroll.ahk
Hover over any taskbar and mouse wheel scroll to change volume
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#If MouseIsOver("ahk_class Shell_TrayWnd") or MouseIsOver("ahk_class Shell_SecondaryTrayWnd")
WheelUp::Send {Volume_Up}
WheelDown::Send {Volume_Down}
MouseIsOver(WinTitle)