migrate scripts

This commit is contained in:
Jacob Janzen 2024-10-07 22:58:07 -05:00
parent b36cf6a8d1
commit 4062d9a2c7
5 changed files with 20 additions and 19 deletions

View file

@ -17,6 +17,7 @@
aspell
bash-language-server
inetutils
choose-gui
clang-tools
cmake
cmake-language-server

View file

@ -0,0 +1,18 @@
#+title: Custom Scripts
#+begin_src nix
{ config, pkgs, ... }:
{
home.file = {
".local/bin/launcher" = {
text ''
#!/bin/sh
app="$(ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ ~/Applications/ | grep '\.app$' | sed 's/\.app$//g' | choose -f "SauceCodePro Nerd Font" -s 15 -b ece0c9).app"
open -n "$HOME/Applications/$app" || open -n "/Applications/$app" || open -n "/System/Applications/Utilities/$app" || open -n "/System/Applications/$app" || open -n "/Applications/Utilities/$app"
'';
executable = true;
};
};
}
#+end_src

View file

@ -10,6 +10,7 @@ This file imports various system configuration components in addition to enablin
./skhd.nix
./yabai.nix
];
environment.systemPackages = with pkgs; [
emacs-macport
gnupg

View file

@ -1,6 +0,0 @@
#+title: GPG Agent Conf
Add =pinentry= program for Mac OS.
#+begin_src conf :tangle ~/.gnupg/gpg-agent.conf
pinentry-program /opt/homebrew/bin/pinentry-mac
#+end_src

View file

@ -1,13 +0,0 @@
#+title: Application Launcher Script
Search several locations for applications with =choose=.
#+begin_src sh :tangle ~/.local/bin/launcher :mkdirp yes :tangle-mode o755
#!/bin/sh
app="$(ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ ~/Applications/ | grep '\.app$' | sed 's/\.app$//g' | choose -f "SauceCodePro Nerd Font" -s 15 -b ece0c9).app"
#+end_src
Try opening the app in each location.
#+begin_src sh :tangle ~/.local/bin/launcher :mkdirp yes :tangle-mode o755
open -n "$HOME/Applications/$app" || open -n "/Applications/$app" || open -n "/System/Applications/Utilities/$app" || open -n "/System/Applications/$app" || open -n "/Applications/Utilities/$app"
#+end_src