installs sqlit via uvx after activation
This commit is contained in:
parent
3f35650066
commit
40c8ba5089
1 changed files with 12 additions and 0 deletions
|
|
@ -5,6 +5,18 @@
|
|||
activationScripts.postActivation.text = ''
|
||||
/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u
|
||||
'';
|
||||
activationScripts.installSqlit = {
|
||||
enable = true;
|
||||
text = ''
|
||||
#!/bin/bash
|
||||
|
||||
if command -v sqlit &> /dev/null; then
|
||||
echo "SQLit already installed."
|
||||
else
|
||||
uvx install --with mariadb --with PyMySQL --with sshtunnel sqlit-tui
|
||||
fi
|
||||
'';
|
||||
};
|
||||
|
||||
defaults = {
|
||||
NSGlobalDomain."com.apple.swipescrolldirection" = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue