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
| #!/usr/bin/env zsh | |
| zmodload -F zsh/zutil b:zparseopts | |
| zparseopts -A args -- \ | |
| -rcfile:: | |
| if [[ ! -v args[--rcfile] ]]; then | |
| exec zsh --interactive | |
| fi | |
| # hist-ignore-space is set to prevent our eval from remaining in history |
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
| │ | |
| 61 buildInputs = [ │ | |
| 1 ¦ stdenv.cc.cc │ | |
| 2 ¦ cairo │ 3 ¦ curl_.out │ | |
| 4 ¦ fontconfig │ | |
| 5 ¦ gdk-pixbuf │ | |
| 6 ¦ glib │ 7 ¦ glibc │ | |
| 8 ¦ gtk3 │ | |
| 9 ¦ libgcrypt │ | |
| 10 ¦ |
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
| --- a/lib/libcurl.vers.in 2020-03-12 05:33:59.367082951 +0000 | |
| +++ b/lib/libcurl.vers.in 2020-03-12 05:33:59.368082948 +0000 | |
| @@ -11,3 +11,8 @@ | |
| global: curl_*; | |
| local: *; | |
| }; | |
| +CURL_@CURL_LT_SHLIB_VERSIONED_FLAVOUR@3 | |
| +{ | |
| + global: curl_*; | |
| + local: *; |
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
| { pkgs ? import <nixpkgs> {} }: | |
| with pkgs; | |
| mkShell { | |
| name = "python-env"; | |
| buildInputs = [ | |
| python3 | |
| ]; |
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
| { | |
| lib, | |
| stdenv, | |
| requireFile, | |
| makeDesktopItem, | |
| makeWrapper, | |
| copyDesktopItems, | |
| autoPatchelfHook, | |
| unzip, |
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
| // ==UserScript== | |
| // @name YouTube Music Volume Slider Fix | |
| // @version 2025-05-21 | |
| // @description Fixes the volume slider to have a reasonable volume range and step size. | |
| // @namespace zick.kim.ytmvsf | |
| // @author *Kim Zick (rummik) | |
| // @license MIT | |
| // @grant none | |
| // @run-at document-end | |
| // @match https://music.youtube.com/* |
OlderNewer