Skip to content

Instantly share code, notes, and snippets.

@wfurney13
wfurney13 / uofhidebuttons
Last active June 9, 2024 23:50
YouTube Video Player - uBlock Origin Filter - Hide Join, Thanks, Clip, Share, Save, Download Buttons
!Hide Join, Thanks, Clip, Share, Save, Download
youtube.com##[aria-label="Join this channel"]
youtube.com##[aria-label="Thanks"]
youtube.com##[aria-label="Clip"]
youtube.com##[aria-label="Share"]
youtube.com##[aria-label="Save to playlist"]
youtube.com##[aria-label="Download"]
@wfurney13
wfurney13 / WindowHandler.ahk
Created October 4, 2022 01:21
Maximizes or restores the active window
F11::
WinGet,WinState,MinMax,A
Switch WinState
{
Case -1:
WinRestore,A
Case 1:
WinRestore,A
@wfurney13
wfurney13 / Microsoft.Powershell_profile.ps1
Last active January 18, 2024 21:30
Powershell profile
oh-my-posh init pwsh --config "Z:\themes\them1.json" | Invoke-Expression
#choco install terminal-icons.powershell
Import-Module -Name Terminal-Icons
Remove-Alias -Force gc
Remove-Alias -Force gp
function b { cd ..}