aboutsummaryrefslogtreecommitdiffhomepage
path: root/X11
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2023-08-14 13:46:13 +0800
committerHsieh Chin Fan <pham@topo.tw>2023-08-14 13:46:29 +0800
commit6949e7843255206bc642e8f7457c217581c9b556 (patch)
tree5f36d3dc5774d76675c077705b2fe3d29507388a /X11
parentb44661bcd02374ea442a9fb81dffa956acfc10be (diff)
Update
Diffstat (limited to 'X11')
-rw-r--r--X11/openbox/rc.xml2
-rwxr-xr-xX11/rofi/pass.edit2
-rwxr-xr-xX11/rofi/rofi-pass1
3 files changed, 3 insertions, 2 deletions
diff --git a/X11/openbox/rc.xml b/X11/openbox/rc.xml
index d04e3b1..8ffab47 100644
--- a/X11/openbox/rc.xml
+++ b/X11/openbox/rc.xml
@@ -778,7 +778,7 @@
778 <keybind key="C-S-R"> 778 <keybind key="C-S-R">
779 <action name="Reconfigure"/> 779 <action name="Reconfigure"/>
780 </keybind> 780 </keybind>
781 <keybind key="W-Escape"> 781 <keybind key="W-S-Escape">
782 <action name="Execute"> 782 <action name="Execute">
783 <command>xkill</command> 783 <command>xkill</command>
784 </action> 784 </action>
diff --git a/X11/rofi/pass.edit b/X11/rofi/pass.edit
index 2c0eeea..bfbdc31 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
18coproc ( 18coproc (
19 $terminal -e pass edit $1 && $(dirname $0)/pass.get $1 19 EDITOR=nvim $terminal -e pass edit $1 && $(dirname $0)/pass.get $1
20) 20)
diff --git a/X11/rofi/rofi-pass b/X11/rofi/rofi-pass
index 498fa62..9e16bc8 100755
--- a/X11/rofi/rofi-pass
+++ b/X11/rofi/rofi-pass
@@ -1,6 +1,7 @@
1#! /bin/bash 1#! /bin/bash
2 2
3export terminal=${terminal:-alacritty} 3export terminal=${terminal:-alacritty}
4export EDITOR=${EDITOR:-vim}
4 5
5cd $(dirname $0) 6cd $(dirname $0)
6 7