Skip to content

Commit dd48a5c

Browse files
author
Frederik Wystup
committed
feat(workspace-init): set default color theme for code-server
Added a new setting to the workspace initialization script that configures the default color theme to "Default Dark Modern" in the settings.json file. This enhancement aims to improve the visual appeal and usability of the code-server environment for developers by providing a consistent dark theme upon setup, enhancing user experience right from the start.
1 parent 21762a0 commit dd48a5c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

code-server/setup-scripts/workspace-init.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ echo "Setting up workspace initialization..."
77
mkdir -p /home/coder/.local/share/code-server/User
88
cat > /home/coder/.local/share/code-server/User/settings.json << 'SETTINGS_EOF'
99
{
10+
"workbench.colorTheme": "Default Dark Modern",
1011
"remote.autoForwardPorts": true,
1112
"remote.portsAttributes": {
1213
"5000": {
1314
"label": "Flask Application",
1415
"onAutoForward": "openBrowserOnce"
1516
},
1617
"3000": {
17-
"label": "React Development Server",
18+
"label": "React Development Server",
1819
"onAutoForward": "openBrowserOnce"
1920
},
2021
"8000": {

0 commit comments

Comments
 (0)