This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find SkinInstaller.exe (search all drives recursively) | |
Write-Host Finding SkinInstaller.exe | |
$SkinInstaller = Get-Childitem -Path (Get-Volume | % { $_.DriveLetter } | Where { $_ -ne $null } | % { $_ + ":\" }) -Recurse -ErrorAction SilentlyContinue -File -Filter "SkinInstaller.exe" | Select-Object -First 1 | |
$SkinInstallerPath = $SkinInstaller.VersionInfo.FileName | |
Write-Host Found SkinInstaller.exe at $SkinInstallerPath | |
# Call ftype & assoc to set the command and file type association | |
Write-Host Associating .rmskin to SkinInstaller.exe | |
cmd.exe /c ftype Rainmeter.SkinInstaller=`"$SkinInstallerPath`" %1 | |
cmd.exe /c assoc .rmskin=Rainmeter.SkinInstaller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Arc that follows an ellipse shape. Basically a replacement for the RoundLine meter. | |
; Arcs can use the various Stroke modifiers that come with the Shape meter. | |
; Could also be used to make any meter follow an ellipse shape | |
[Rainmeter] | |
Update=16 | |
; Source measure. Should have MinValue / MaxValue set if not automatically provided by the measure | |
[MeasureProgress] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Title Extraction snippet from reisir/mondtholomew | |
; Useful when the "title" of the media has duplicate or unnecessary information. | |
; For example, the song "Fake Friends" posted on the YouTube channel "MANON" has the title "MANON / Fake Friends (Music Video)" | |
; Title Extraction removes the duplicated artist name and "(Music Video)" from the information displayed | |
; [MeasureTitle] reports the following values when Title Extraction is disabled / enabled: | |
; TitleExtraction=0 -> MANON - MANON / Fake Friends (Music Video) | |
; TitleExtraction=1 -> MANON - Fake Friends | |
[Variables] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Rainmeter] | |
DefaultUpdateDivider=-1 | |
Update=16 | |
[Variables] | |
; User settings | |
Spacing=20 | |
MaxWidth=500 | |
ScrollStepSize=1 | |
ScrollStartDelay=1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Optimal AudioLevel setup | |
; Thanks to @kodikuu for the math | |
[Variables] | |
; How many bands to generate | |
Bands=50 | |
; How many frames of data to keep (an integer higher than 0) | |
; Higher accuracy also means higher latency | |
Accuracy=5 | |
; How many bands to skip, it's recommended to skip the first band because of AudioLevel inaccuracies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance force | |
; You need to have a sword with the Eager Edge perk: https://www.light.gg/db/items/2077819806/ | |
; and use Revenant Hunter w/ Shatterdive aspect, and either triple or strafe jump. | |
; If you use non-standard keybinds, edit the script accordingly. | |
; List of special keys: https://www.autohotkey.com/docs/KeyList.htm | |
#IfWinActive ahk_exe destiny2.exe | |
CapsLock:: |