diff options
Diffstat (limited to 'files/.config')
| -rw-r--r-- | files/.config/devilspie2/devilspie2.lua | 16 | ||||
| -rw-r--r-- | files/.config/youtube-dl/config | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/files/.config/devilspie2/devilspie2.lua b/files/.config/devilspie2/devilspie2.lua new file mode 100644 index 0000000..2a88a16 --- /dev/null +++ b/files/.config/devilspie2/devilspie2.lua @@ -0,0 +1,16 @@ +debug_print("Application: " .. get_application_name() .. + ", window: " .. get_window_name() .. + ", window type: " .. get_window_type()); + +if (get_window_type() == 'WINDOW_TYPE_NORMAL') then + if (string.find(get_application_name(), 'IntelliJ IDEA')) then + set_window_workspace(2); + maximize(); + elseif (get_application_name() == 'Document Viewer') then + maximize(); + elseif (get_application_name() == 'mpv') then + center(); + elseif (get_window_name() == 'gitk') then + maximize(); + end +end diff --git a/files/.config/youtube-dl/config b/files/.config/youtube-dl/config new file mode 100644 index 0000000..0499d5d --- /dev/null +++ b/files/.config/youtube-dl/config @@ -0,0 +1,3 @@ +--format bestvideo[width<=1920]+bestaudio/best[width<=1920]/bestvideo+bestaudio/best +--no-check-certificate +--force-ipv4 |
