Skip to content

Instantly share code, notes, and snippets.

View asheroto's full-sized avatar
:electron:
Calculating Universe

asheroto

:electron:
Calculating Universe
View GitHub Profile
@asheroto
asheroto / play-sound.ps1
Last active October 18, 2021 04:19 — forked from murven/play-sound.ps1
Play sound in PowerShell
# Native sound player (wav only)
$player = New-Object System.Media.SoundPlayer "$env:windir\Media\notify.wav"
$player.Play()
@asheroto
asheroto / PastePlainText.ahk
Last active March 9, 2021 02:48 — forked from jadient/PastePlainText.ahk
AutoHotKey script to paste text without formatting
; WindowsKey-V shortcut to paste text with no formatting
; (like Paste Special > Plain Text, but faster and works everywhere)
; for AutoHotKey
#v::
ClipSaved := ClipboardAll
tempClipboard := clipboard
Clipboard := tempClipboard
Send ^v
Sleep, 500
Clipboard := ClipSaved