chore: add custom cursor, add config system

This commit is contained in:
2025-06-29 22:50:31 +02:00
parent 60e3102257
commit 807ad60d62
13 changed files with 315 additions and 37 deletions

View File

@@ -14,6 +14,62 @@
"core:window:allow-start-dragging",
"core:window:allow-minimize",
"core:window:allow-close",
"fs:default"
"fs:default",
{
"identifier": "fs:allow-write",
"allow": [
{
"path": "$HOME/**/*"
}
]
},
{
"identifier": "fs:allow-read",
"allow": [
{
"path": "$HOME/**/*"
}
]
},
{
"identifier": "fs:allow-exists",
"allow": [
{
"path": "$HOME/**/*"
}
]
},
{
"identifier": "fs:allow-write-file",
"allow": [
{
"path": "$HOME/**/*"
}
]
},
{
"identifier": "fs:allow-read-file",
"allow": [
{
"path": "$HOME/**/*"
}
]
},
{
"identifier": "fs:allow-read-text-file",
"allow": [
{
"path": "$HOME/**/*"
}
]
},
{
"identifier": "fs:allow-mkdir",
"allow": [
{
"path": "$HOME/**/*"
}
]
}
]
}