Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install/desktop/app-vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ mkdir -p ~/.config/Code/User
cp ~/.local/share/omakub/configs/vscode.json ~/.config/Code/User/settings.json

# Install default supported themes
code --install-extension enkia.tokyo-night
NODE_OPTIONS="${NODE_OPTIONS:+$NODE_OPTIONS }--no-deprecation" code --install-extension enkia.tokyo-night
Comment thread
chriscupas marked this conversation as resolved.
Outdated
2 changes: 1 addition & 1 deletion themes/set-vscode-theme.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if command -v code &>/dev/null; then
code --install-extension $VSC_EXTENSION >/dev/null
NODE_OPTIONS="${NODE_OPTIONS:+$NODE_OPTIONS }--no-deprecation" code --install-extension "$VSC_EXTENSION" >/dev/null
Comment thread
chriscupas marked this conversation as resolved.
Outdated
sed -i "s/\"workbench.colorTheme\": \".*\"/\"workbench.colorTheme\": \"$VSC_THEME\"/g" ~/.config/Code/User/settings.json
fi