2025-06-10 14:16:44 +02:00
|
|
|
#include "../include/HyprlandService.h"
|
2025-06-10 14:09:56 +02:00
|
|
|
|
|
|
|
|
int main(int, char**){
|
2025-06-10 15:45:25 +02:00
|
|
|
for (auto& c : HyprlandService::getClientsOnActiveWorkspace()) {
|
|
|
|
|
HyprlandService::setClientFloating(c);
|
|
|
|
|
}
|
|
|
|
|
HyprlandService::setFloatingRule(true);
|
|
|
|
|
|
|
|
|
|
sleep(5);
|
|
|
|
|
|
|
|
|
|
for (auto& c : HyprlandService::getClientsOnActiveWorkspace()) {
|
|
|
|
|
HyprlandService::setClientTiled(c);
|
|
|
|
|
}
|
|
|
|
|
HyprlandService::setFloatingRule(false);
|
|
|
|
|
}
|