• Updates IDE settings for improved file nesting and exclusions • Introduces biome configuration file for consistent project formatting • Implements brightness service and UI component for monitor brightness control • Refactors layout and code formatting for consistency across components
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import { App } from 'astal/gtk4'
|
|
import style from './style/style.scss'
|
|
import Bar from './windows/Bar'
|
|
|
|
App.start({
|
|
css: style,
|
|
main() {
|
|
App.get_monitors().map(Bar)
|
|
}
|
|
})
|