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
84
85
86
87
88
89
|
---
layout: home
pageClass: home-page
hero:
name: "Astal"
text: "Create Beautiful Widgets With Ease"
tagline: "The Linux Suite and Framework to Craft Desktop Shells and <i>beautiful</i> <i>functional</i> Wayland Widgets with GTK!"
image: /icon.svg
actions:
- theme: brand
text: What is Astal?
link: /guide/getting-started/introduction
- theme: alt
text: Get Started
link: /guide/getting-started/installation
- theme: alt
text: References
link: /guide/libraries/references
features:
- title: Use Your Preferred Language
icon: <i style="color:var(--vp-c-brand-3)" class="devicon-typescript-plain"></i>
details: The main focus of Astal is TypeScript+JSX. But you can use the libraries in any language that supports <a href="https://en.wikipedia.org/wiki/List_of_language_bindings_for_GTK">Gobject Introspection</a>.
- title: No bash scripts needed
icon: <i style="color:var(--vp-c-brand-3)" class="devicon-bash-plain"></i>
details: Includes modules to work with Network, Bluetooth, Battery, Audio and <a href="/astal/guide/libraries/references#astal-libraries">more</a>.
- title: Use any Gtk widget
icon: <i style="color:var(--vp-c-brand-3)" class="fl-gtk"></i>
details: With Astal you work with Gtk directly. You are not limited to only a set of them.
---
<!--TODO: add icons for buttons https://github.com/vuejs/vitepress/pull/3795-->
<style>
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, var(--vp-c-purple-3), var(--vp-c-brand-3));
--vp-home-hero-image-background-image: linear-gradient(-45deg, var(--vp-c-purple-3), var(--vp-c-brand-3));
--vp-home-hero-image-filter: blur(44px);
}
:root {
--overlay-gradient: color-mix(in srgb, var(--vp-c-brand-1), transparent 55%);
}
.dark {
--overlay-gradient: color-mix(in srgb, var(--vp-c-brand-1), transparent 85%);
}
.home-page {
background:
linear-gradient(215deg, var(--overlay-gradient), transparent 40%),
radial-gradient(var(--overlay-gradient), transparent 40%) no-repeat -60vw -40vh / 105vw 200vh,
radial-gradient(var(--overlay-gradient), transparent 65%) no-repeat 50% calc(100% + 20rem) / 60rem 30rem;
.VPFeature a {
font-weight: bold;
color: var(--vp-c-brand-2);
}
.VPFooter {
background-color: transparent !important;
border: none;
}
.VPNavBar:not(.top) {
background-color: transparent !important;
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
div.divider {
display: none;
}
}
}
@media (min-width: 640px) {
:root {
--vp-home-hero-image-filter: blur(56px);
}
}
@media (min-width: 960px) {
:root {
--vp-home-hero-image-filter: blur(68px);
}
}
</style>
|