This commit is contained in:
joygnu 2024-07-12 20:46:40 +02:00
parent 2d715644e0
commit f069835c85
2 changed files with 16 additions and 2 deletions

15
home/ags/bar/README.md Normal file
View file

@ -0,0 +1,15 @@
# Starter Config
if suggestions don't work, first make sure
you have TypeScript LSP working in your editor
if you do not want typechecking only suggestions
```json
// tsconfig.json
"checkJs": false
```
types are symlinked to:
/home/joy/.local/share/com.github.Aylur.ags/types

View file

@ -10,7 +10,7 @@ const date = Variable("", {
}) })
// widgets can be only assigned as a child in one container // widgets can be only assigned as a child in one container
// so to make a reusable widget, make it a function // so to make a reuseable widget, make it a function
// then you can simply instantiate one by calling it // then you can simply instantiate one by calling it
function Workspaces() { function Workspaces() {
@ -217,4 +217,3 @@ App.config({
}) })
export { } export { }