This file contains hidden or 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
<style> | |
.navbar-sidenav { | |
overflow-y: auto; | |
scrollbar-width: none; | |
} | |
</style> |
This file contains hidden or 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
#Requires AutoHotkey v2.0 | |
CoordMode("Mouse", "Screen") | |
SetKeyDelay(50) | |
SetCapsLockState("AlwaysOff") | |
SetTrayIcon := (isActive) => TraySetIcon("shell32.dll", isActive ? 256 : 255) | |
SetTrayIcon(isActive := false) | |
OPTION_RESET_TIMEOUT_MS := 1400 |
This file contains hidden or 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
# Description: Download lilnasy's automated builds of Zed to ~/Apps | |
# Author: github.com/michaelmob | |
# Last Updated: 2025-03-06 | |
$fileName = if ($args.Count -gt 0) { $args[0] } else { "zed.exe" } | |
$zedLatest = Invoke-RestMethod -Uri "https://api.github.com/repos/lilnasy/zed-windows-builds/releases/latest" | |
$downloadUrl = $zedLatest.assets | | |
Where-Object { $_.name -like $fileName } | | |
Select-Object -ExpandProperty browser_download_url -First 1 |
OlderNewer