Files
dotfiles/scripts/focus_firefox.js
2024-11-19 12:26:15 +02:00

14 lines
289 B
JavaScript

var appName = "firefox";
// Search for a Firefox window
var client = workspace.clientList().find(c => c.resourceName === appName);
if (client) {
// Focus the window
workspace.activeClient = client;
} else {
// Start Firefox if not running
workspace.launch("firefox");
}