• 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
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { GLib } from 'astal'
|
|
|
|
export default function Launcher() {
|
|
return (
|
|
<button cssName="barauncher">
|
|
<image iconName={GLib.get_os_info('LOGO') || 'missing-symbolic'} />
|
|
</button>
|
|
)
|
|
}
|