Skip to content

Instantly share code, notes, and snippets.

@smcnally
Created October 15, 2022 01:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smcnally/3fe649a6d2810d634deae1ab52097d76 to your computer and use it in GitHub Desktop.
Save smcnally/3fe649a6d2810d634deae1ab52097d76 to your computer and use it in GitHub Desktop.
devilspie2 config examples
-- 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