From e8d1bfaf647993187f9bffe6cf74a57bb703cc51 Mon Sep 17 00:00:00 2001 From: thomasba Date: Mon, 4 Apr 2016 00:38:05 +0200 Subject: [PATCH 1/3] Replaced dmenu with rofi --- i3/autostart | 1 + i3/config | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/i3/autostart b/i3/autostart index ffc06b1..58e1627 100755 --- a/i3/autostart +++ b/i3/autostart @@ -15,4 +15,5 @@ pamac-tray & xfce4-clipman & gnome-keyring-daemon --start --daemonize --components=pkcs11,secrets,ssh,gpg & xset r rate 400 30 +rofi -quiet & sleep 2 && xmodmap ~/.i3/speedswapper & diff --git a/i3/config b/i3/config index 0b349db..94aa48f 100644 --- a/i3/config +++ b/i3/config @@ -40,8 +40,6 @@ bindcode Mod4+26 layout default # Toggle tiling/floating of the current window (Mod4+t) bindsym Mod4+t floating toggle -bindsym Mod4+space exec bashrun2 - # Go into the tiling layer / floating layer, depending on whether # the current window is tiling / floating (Mod4+t) #bindcode Mod4+28 focus mode_toggle From d9281de63638d20be1c395541a05cb631d4a37fb Mon Sep 17 00:00:00 2001 From: thomasba Date: Mon, 4 Apr 2016 00:38:19 +0200 Subject: [PATCH 2/3] Saved defaults for rofi --- xresources | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 xresources diff --git a/xresources b/xresources new file mode 100644 index 0000000..3a0ce57 --- /dev/null +++ b/xresources @@ -0,0 +1,19 @@ +! ------------------------------------------------------------------------------ +! ROFI Options +! ------------------------------------------------------------------------------ +rofi.key-run: SuperL-space +rofi.key-ssh: SuperL-s +rofi.key-window: SuperL-Tab +rofi.fuzzy: true +rofi.terminal: evilvte +rofi.ssh-command: {terminal} -e env TERM=xterm-256color {ssh-client} {host} +! ------------------------------------------------------------------------------ +! ROFI Color theme +! ------------------------------------------------------------------------------ +rofi.color-enabled: true +rofi.color-window: #ffffff, #0096ff, #0096ff +rofi.color-normal: #ffffff, #002b36, #eeeeee, #586e75, #eee8d5 +rofi.color-active: #ffffff, #0096ff, #eeeeee, #0096ff, #ffffff +rofi.color-urgent: #ffffff, #dc322f, #eeeeee, #dc322f, #fdf6e3 + +! vim: set ft=xdefaults : From f912705d6bba33f6a5792e1ee8e7b6f8e8427a02 Mon Sep 17 00:00:00 2001 From: thomasba Date: Mon, 4 Apr 2016 01:42:41 +0200 Subject: [PATCH 3/3] Always load GnuPG plugin --- vim/plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plug.vim b/vim/plug.vim index c66b4a1..8f744f8 100644 --- a/vim/plug.vim +++ b/vim/plug.vim @@ -55,7 +55,7 @@ Plug 'tpope/vim-surround' Plug 'vim-scripts/tComment' Plug 'tmhedberg/matchit' Plug 'chase/vim-ansible-yaml', { 'for': 'yaml' } -Plug 'jamessan/vim-gnupg', { 'for': 'gpg' } +Plug 'jamessan/vim-gnupg' Plug 'docunext/closetag.vim', { 'for': ['html','php'] } Plug 'lilydjwg/colorizer', { 'for': ['html','php','css','sass','scss'] } Plug 'Townk/vim-autoclose'