migrate scripts
This commit is contained in:
parent
b36cf6a8d1
commit
4062d9a2c7
5 changed files with 20 additions and 19 deletions
|
@ -17,6 +17,7 @@
|
|||
aspell
|
||||
bash-language-server
|
||||
inetutils
|
||||
choose-gui
|
||||
clang-tools
|
||||
cmake
|
||||
cmake-language-server
|
||||
|
|
18
macos.local/.flake/home/scripts.nix.org
Normal file
18
macos.local/.flake/home/scripts.nix.org
Normal 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
|
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Add table
Reference in a new issue