refactor(ags): prioritise getters when using astal libs

This commit is contained in:
matt1432 2024-12-29 17:22:55 -05:00
parent 10b70583e0
commit 179e402504
30 changed files with 176 additions and 164 deletions
modules/ags/config/widgets/applauncher

View file

@ -23,5 +23,6 @@ export const launchApp = (app: AstalApps.Application) => {
.join(' ');
bash(`${exe} &`);
app.frequency += 1;
app.set_frequency(app.get_frequency() + 1);
};