diff options
-rw-r--r-- | X11/openbox/rc.xml | 6 | ||||
-rwxr-xr-x | X11/rofi/pass.edit | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/X11/openbox/rc.xml b/X11/openbox/rc.xml index af8863b..c15e465 100644 --- a/X11/openbox/rc.xml +++ b/X11/openbox/rc.xml | |||
@@ -112,7 +112,7 @@ | |||
112 | -o "window.dimensions.lines=32" \ | 112 | -o "window.dimensions.lines=32" \ |
113 | -o "window.dimensions.columns=70" \ | 113 | -o "window.dimensions.columns=70" \ |
114 | -o 'env.fullrc="false"' \ | 114 | -o 'env.fullrc="false"' \ |
115 | -e nvim ~/.config/openbox/rc.xml; | 115 | -e vim ~/.config/openbox/rc.xml; |
116 | openbox --reconfigure | 116 | openbox --reconfigure |
117 | ' | 117 | ' |
118 | </command> | 118 | </command> |
@@ -543,7 +543,7 @@ | |||
543 | <action name="Execute"> | 543 | <action name="Execute"> |
544 | <!-- Copy to CLIPBOARD --> | 544 | <!-- Copy to CLIPBOARD --> |
545 | <command> | 545 | <command> |
546 | alacritty --title @CLIPBORD -o 'env.fullrc="false"' -e nvim -c 'r !xsel -ob' -c 'normal A' -c 'startinsert' -c 'nmap <C-c> :w !xsel -ib<CR>:qa!<CR>' | 546 | alacritty --title @CLIPBORD -o 'env.fullrc="false"' -e vim -c 'r !xsel -ob' -c 'normal A' -c 'startinsert' -c 'nmap <C-c> :w !xsel -ib<CR>:qa!<CR>' |
547 | </command> | 547 | </command> |
548 | </action> | 548 | </action> |
549 | </keybind> | 549 | </keybind> |
@@ -758,7 +758,7 @@ | |||
758 | </keybind> | 758 | </keybind> |
759 | <keybind key="C-A-n"> | 759 | <keybind key="C-A-n"> |
760 | <action name="Execute"> | 760 | <action name="Execute"> |
761 | <command>alacritty -e nvim</command> | 761 | <command>alacritty -e vim</command> |
762 | </action> | 762 | </action> |
763 | </keybind> | 763 | </keybind> |
764 | <keybind key="W-S-r"> | 764 | <keybind key="W-S-r"> |
diff --git a/X11/rofi/pass.edit b/X11/rofi/pass.edit index bfbdc31..03ba569 100755 --- a/X11/rofi/pass.edit +++ b/X11/rofi/pass.edit | |||
@@ -16,5 +16,5 @@ fi | |||
16 | 16 | ||
17 | # Use detected terminal emulator to edit password | 17 | # Use detected terminal emulator to edit password |
18 | coproc ( | 18 | coproc ( |
19 | EDITOR=nvim $terminal -e pass edit $1 && $(dirname $0)/pass.get $1 | 19 | EDITOR=vim $terminal -e pass edit $1 && $(dirname $0)/pass.get $1 |
20 | ) | 20 | ) |