Skip to content

Commit cac1127

Browse files
committed
feat: add Seti icons to file tree
1 parent 13c3c91 commit cac1127

File tree

5 files changed

+2582
-2
lines changed

5 files changed

+2582
-2
lines changed

scripts/update_seti_icons.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
4+
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
5+
ASSET_DIR="$ROOT_DIR/src/browser/assets/file-icons"
6+
7+
mkdir -p "$ASSET_DIR"
8+
9+
curl -sSL "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-seti/icons/seti.woff" \
10+
-o "$ASSET_DIR/seti.woff"
11+
12+
curl -sSL "https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-seti/icons/vs-seti-icon-theme.json" \
13+
-o "$ASSET_DIR/seti-icon-theme.json"
14+
15+
echo "Updated Seti icon assets in $ASSET_DIR"

0 commit comments

Comments
 (0)