diff options
| author | Anton Bobov <abobov@gmail.com> | 2020-11-07 23:06:27 +0500 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2020-11-07 23:06:27 +0500 |
| commit | 004c3891b1433053bb30444f34fc5cad28ab2ce3 (patch) | |
| tree | 394699b267dab78908909a7c4cc441b629c5f709 /files/.config | |
| parent | a8b19f5d7ec7e442f0a55a12f4afe6afbf32f006 (diff) | |
Updates.
Diffstat (limited to 'files/.config')
| -rw-r--r-- | files/.config/devilspie2/devilspie2.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/.config/devilspie2/devilspie2.lua b/files/.config/devilspie2/devilspie2.lua index d9f09e2..acad161 100644 --- a/files/.config/devilspie2/devilspie2.lua +++ b/files/.config/devilspie2/devilspie2.lua @@ -15,10 +15,10 @@ if (get_window_type() == 'WINDOW_TYPE_NORMAL') then elseif (get_window_name() == 'win0') then -- IntelliJ IDEA starting window set_window_workspace(2); - elseif (get_window_class() == 'jetbrains-idea') then + elseif (get_window_class() == 'jetbrains-idea' and get_window_name() == 'IntelliJ IDEA') then set_window_workspace(2); maximize(); - elseif (get_window_class() == 'jetbrains-datagrip') then + elseif (get_window_class() == 'jetbrains-datagrip' and get_window_name() == 'DataGrip') then set_window_workspace(2); maximize(); end |
