summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/.local/bin/workspace4
-rw-r--r--vim/.vimrc1
2 files changed, 3 insertions, 2 deletions
diff --git a/bin/.local/bin/workspace b/bin/.local/bin/workspace
index 36f09d4..2ac5690 100755
--- a/bin/.local/bin/workspace
+++ b/bin/.local/bin/workspace
@@ -1,13 +1,13 @@
#!/usr/bin/env bash
-# List of workspaces: ( number, name, focused)
+# List of workspaces: ( number, name, focused, display)
workspaces=$(i3-msg -t get_workspaces | awk 'BEGIN {
RS="(},{)|(\\[{)|(}\\])";
FPAT="([^,:\"]+)|([^,\"]+:[^,\"]+)|([^,]+{[^}]+})"
}
$0 !~ "^\\s*$" {
gsub(/"/, "", $4)
- print $4, $6, $10
+ print $4, $6, $10, $13
}' | sort)
act_on_container() {
diff --git a/vim/.vimrc b/vim/.vimrc
index b4f98ed..3ae13d2 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -80,6 +80,7 @@ Plug 'KKPMW/sacredforest-vim'
Plug 'junegunn/seoul256.vim'
Plug 'romainl/Apprentice'
Plug 'arcticicestudio/nord-vim'
+Plug 'JuliaEditorSupport/julia-vim'
" Plug 'axvr/zepl.vim'
call plug#end()