-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLatte-uOS-Store.code-workspace
More file actions
83 lines (83 loc) · 1.69 KB
/
Copy pathLatte-uOS-Store.code-workspace
File metadata and controls
83 lines (83 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"folders": [
{
"path": "."
}
],
"settings": {
"html.format.wrapLineLength": 200,
"editor.wordWrapColumn": 200,
"editor.wordWrap": "on",
"autopep8.importStrategy": "useBundled",
"autopep8.args": [
"--max-line-length=200"
]
},
"launch": {
"configurations": [
{
"name": "Launch generic faces preview app",
"type": "node",
"runtimeExecutable": "${workspaceFolder}/../lv_micropython/ports/unix/build-lvgl/micropython",
"runtimeArgs": [
"preview.py"
],
"request": "launch",
"cwd": "${workspaceFolder}/faces/generic-face",
"console": "integratedTerminal"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Remove unused Font files",
"type": "shell",
"command": "python3",
"args": [
"tools/remove_unused_fonts.py",
"${workspaceFolder}/fonts",
"${workspaceFolder}",
"temp,logs,__pycache__"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"runOptions": {
"instanceLimit": 1
},
"problemMatcher": []
},
{
"label": "Generate generic faces preview thumbnails",
"type": "shell",
"command": "python3",
"options": {
"cwd": "${workspaceFolder}/faces/generic-face"
},
"args": [
"generate.py",
"${workspaceFolder}/../lv_micropython/ports/unix/build-lvgl/micropython"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"runOptions": {
"instanceLimit": 1
},
"problemMatcher": []
},
]
}
}