aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2020-11-07 23:06:27 +0500
committerAnton Bobov <abobov@gmail.com>2020-11-07 23:06:27 +0500
commit004c3891b1433053bb30444f34fc5cad28ab2ce3 (patch)
tree394699b267dab78908909a7c4cc441b629c5f709
parenta8b19f5d7ec7e442f0a55a12f4afe6afbf32f006 (diff)
Updates.
-rw-r--r--files/.config/devilspie2/devilspie2.lua4
-rw-r--r--files/.zsh/rc/S40_completion2
2 files changed, 3 insertions, 3 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
diff --git a/files/.zsh/rc/S40_completion b/files/.zsh/rc/S40_completion
index 7edf18c..7ba2f08 100644
--- a/files/.zsh/rc/S40_completion
+++ b/files/.zsh/rc/S40_completion
@@ -29,7 +29,7 @@ hosts=($( ( \
zstyle ':completion:*' hosts $hosts
zstyle ':completion:*:hosts' list-colors '=(#b)(*)(bobov.name)=01;30=01;31' '=[^.]#=01;31'
-users=(root dexter anton)
+users=(root anton)
zstyle ':completion:*' users $users
# }}}