Compare commits

...

2 Commits

Author SHA1 Message Date
d5dce97512 feat(max): enable autosetupremote in git 2025-08-18 17:57:20 -04:00
39b0bdf6e1 feat(max): add radio script 2025-08-18 17:54:28 -04:00
2 changed files with 15 additions and 0 deletions

View File

@@ -101,6 +101,20 @@
# arm support
pkgs-unstable.sparrow
(writeShellScriptBin "radio" ''
list="
WIOP http://s4.yesstreaming.net:7119/;audio.mp3
FamilyAlter https://usa17.fastcast4u.com/proxy/roloffev?mp=/1
"
choice=$(echo "$list" | awk '{print $1}' | ${fzf}/bin/fzf)
if [[ -n "$choice" ]]; then
url=$(echo "$list" | awk -v name="$choice" '$1==name {print $2}')
${mpg123}/bin/mpg123 "$url"
fi
'')
];
programs.zsh.enable = true;

View File

@@ -10,6 +10,7 @@ in
userEmail = publicGitEmail;
extraConfig = {
init.defaultBranch = "main";
push.autoSetupRemote = true;
commit.gpgsign = true;
gpg.format = "ssh";