summaryrefslogtreecommitdiff
path: root/docs/guide/lua/first-widgets.md
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-11-13 22:43:48 +0100
committerGitHub <[email protected]>2024-11-13 22:43:48 +0100
commita60ad45f7dde90ee1fca8bf0aecaad682e029623 (patch)
tree21bde0028f4a2e722210edc85b1be3407c52e6cb /docs/guide/lua/first-widgets.md
parentf7cfc8eb77a395373bf40f83b0d779ece34a6108 (diff)
parent17aeb9ef945848befdbce0be76ffbeffe27c24d6 (diff)
Merge pull request #75 from Aylur/docs/remove-ags
docs: remove ags related docs
Diffstat (limited to 'docs/guide/lua/first-widgets.md')
-rw-r--r--docs/guide/lua/first-widgets.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/guide/lua/first-widgets.md b/docs/guide/lua/first-widgets.md
index efc1c4f..70cfe0c 100644
--- a/docs/guide/lua/first-widgets.md
+++ b/docs/guide/lua/first-widgets.md
@@ -13,8 +13,7 @@ local App = require("astal.gtk3.app")
App:start({
main = function()
-- you will instantiate Widgets here
- -- or setup anything else if you need
- print("hi")
+ -- and setup anything else if you need
end
})
```
@@ -22,7 +21,7 @@ App:start({
:::
Then run `lua init.lua` in the terminal, and that's it!
-Now you have an instance running with Lua.
+Now you have an Astal instance running written in Lua.
## Root of every shell component: Window