nixos-configs/devices/wim/config/ags/js/bar/buttons/heart.js

29 lines
651 B
JavaScript
Raw Normal View History

2023-12-08 02:22:38 -05:00
import { Label } from 'resource:///com/github/Aylur/ags/widget.js';
import Variable from 'resource:///com/github/Aylur/ags/variable.js';
2023-11-16 00:48:50 -05:00
import EventBox from '../../misc/cursorbox.js';
import Persist from '../../misc/persist.js';
2023-09-04 22:27:34 -04:00
const HeartState = Variable();
Persist({
name: 'heart',
gobject: HeartState,
prop: 'value',
condition: '',
whenFalse: '󰣐',
});
2023-09-04 22:27:34 -04:00
2023-12-08 02:22:38 -05:00
export default () => EventBox({
onPrimaryClickRelease: () => {
HeartState.value = HeartState.value === '' ? '󰣐' : '';
},
2023-12-08 02:22:38 -05:00
child: Label({
className: 'heart-toggle',
binds: [['label', HeartState, 'value']],
}),
});