nixos-configs/nixosModules/ags/config/widgets/bar/items/brightness.tsx

21 lines
507 B
TypeScript
Raw Normal View History

2024-11-03 23:35:53 -05:00
import { bind } from 'astal';
import Brightness from '../../../services/brightness';
export default () => {
return (
<box className="bar-item brightness">
<overlay>
<circularprogress
startAt={0.75}
endAt={0.75}
value={bind(Brightness, 'screen')}
rounded
/>
<icon icon={bind(Brightness, 'screenIcon')} />
</overlay>
</box>
);
};