Created
October 15, 2022 01:31
-
-
Save smcnally/3fe649a6d2810d634deae1ab52097d76 to your computer and use it in GitHub Desktop.
devilspie2 config examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Set stickiness by **application** | |
-- Terminal available on all workspaces | |
if (get_application_name() == "Terminal") then | |
stick_window(); | |
end | |
-- Set stickiness and size by **window** | |
if (string.match(get_window_name(), "Pomodoro Logger")) then | |
stick_window(); | |
set_window_size (850, 600); | |
end | |
-- */aside* [Pomodoro Logger](https://github.com/zxch3n/PomodoroLogger) does a solid job of tracking and reporting. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment