Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Added in May 2026, TODO: remove this file from the system when most users have ran
// this migration script
// https://github.com/ublue-os/aurora/issues/1741

const old_app = "org.gnome.Ptyxis";
const new_app = "org.kde.konsole";

for (const panel of panels()) {
for (const widget of panel.widgets()) {
if (widget.type === "org.kde.plasma.icontasks") {
widget.currentConfigGroup = ["General"];
const launchers = widget.readConfig("launchers").toString();

if (launchers.includes(old_app)) {

const re = new RegExp(old_app.replace(/\./g, "\\."), "g");
const updated = launchers.replace(re, new_app);

widget.writeConfig("launchers", updated.split(','));
widget.reloadConfig();
}
}
}
}