Giter Site home page Giter Site logo

aylur / astal Goto Github PK

View Code? Open in Web Editor NEW
61.0 61.0 5.0 796 KB

JavaScript/TypeScript framework for creating Linux Desktops ontop of Wayland compositors

License: GNU General Public License v3.0

TypeScript 93.46% Nix 2.07% Meson 1.37% Shell 0.57% C 2.53%
desktop-environment gtk4 unixporn

astal's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

astal's Issues

No destroy function on Widgets

I'm trying to create a popup notification list, I can't handle widget destroy because there is no such function on the widget.

JS ERROR: TypeError: list.children.find(...).destroy is not a function

Styles are not appying

What have I tried:

App.config({
	windows,
	style: `/home/posaydone/.config/astal/style.css`,
});
App.resetCss();
App.applyCss('/home/posaydone/.config/astal/style.css');

css prop in widgets is working.

Services do not emit signals on app start

I'm trying to connect to a service with a hook, but icons, sliders values and classes are not set when the application starts.
Maybe services don't emit signals during initialization?

const NetworkIndicator = () =>
	Widget.Icon().hook(network, (self) => {
		const icon = network[network.primary || 'wifi']?.icon_name;
		self.icon = icon || '';
		self.visible = !!icon;
	});
type ControlCenterButtonProps = {
	label: LabelProps['label'];
	connection: [GObject.Object, () => boolean];
	icon: IconProps['icon'];
} & ButtonProps;
export default ({
	icon,
	label,
	connection: [service, condition],
	...props
}: ControlCenterButtonProps) =>
	Widget.Button({
		cssClasses: ['control-center__button'],
		child: Widget.Box({
			hexpand: true,
			hpack: 'start',
			spacing: 12,
			children: [Widget.Icon({ icon }), Widget.Label({ label })],
		}),
		setup: (self) => {
			self.hook(service, () => {
				self.toggleCssClass('active', condition());
			});
		},
		...props,
	});

image
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.