mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
* Add ssh-agent configuration and enable service on user install * add migration * install SSH Agent via service menu * Delete install/config/all.sh * Delete migrations/1757524404.sh * Delete install/config/ssh-agent.sh * Update envs.conf * Revert "Delete install/config/all.sh" This reverts commit 579fb835ad834d4b2a40a034beae6d8c35a87166. * revert all.sh changes * disable update checks in VS Code on install * Delete bin/omarchy-install-ssh-agent * Update omarchy-menu revert changes from wrong branch * add migration script * Merge back * Fixup --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
25 lines
660 B
Bash
Executable File
25 lines
660 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Installing VSCode..."
|
|
omarchy-pkg-add visual-studio-code-bin
|
|
|
|
mkdir -p ~/.vscode
|
|
|
|
cat > ~/.vscode/argv.json << 'EOF'
|
|
// This configuration file allows you to pass permanent command line arguments to VS Code.
|
|
// Only a subset of arguments is currently supported to reduce the likelihood of breaking
|
|
// the installation.
|
|
//
|
|
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT
|
|
//
|
|
// NOTE: Changing this file requires a restart of VS Code.
|
|
{
|
|
"password-store":"gnome-libsecret"
|
|
}
|
|
EOF
|
|
|
|
# Ensure VSC's own auto-update feature is turned off
|
|
printf '{\n "update.mode": "none"\n}\n' > ~/.config/Code/User/settings.json
|
|
|
|
setsid gtk-launch code
|