File tree Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This plugin allows you to copy/show/add/edit passwords from KWallet.
4
4
5
5
This is a fork from https://github.com/jimtendo/kwallet-runner but has extra features added and deprecated code removed.
6
6
7
- Required Dependencies
7
+ Required Dependencies (Qt5)
8
8
----------------------
9
9
10
10
Debian/Ubuntu:
@@ -22,21 +22,12 @@ Arch (Manjaro):
22
22
The easiest way to install is:
23
23
` curl https://raw.githubusercontent.com/alex1701c/krunner-kwallet/master/install.sh | bash `
24
24
25
- Or you can do it manually (with admin privileges):
26
- ```
27
- git clone https://github.com/alex1701c/kwallet-runner
28
- cd kwallet-runner/
29
- mkdir build
30
- cd build
31
- cmake -DQT_PLUGIN_INSTALL_DIR=`kf5-config --qt-plugins` -DCMAKE_BUILD_TYPE=Release ..
32
- make
33
- sudo make install
34
- ```
25
+ You may also
35
26
36
27
Restart krunner to load the runner (in a terminal type: kquitapp5 krunner;kstart5 krunner )
37
28
38
29
### Screenshots
39
- You can search for entries. And copy the password (default action),
30
+ You can search for entries and copy the password (default action),
40
31
show the password in a dialog info button(Shift+Return) or edit it.
41
32
To add a new password type kwallet-add
42
33
![ Overview] ( https://raw.githubusercontent.com/alex1701c/Screenshots/master/krunner-kwallet/overview.png )
Original file line number Diff line number Diff line change 30
30
killall krunner
31
31
fi
32
32
33
- echo " Installation finished !" ;
33
+ echo " Installation finished!" ;
34
34
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Exit if something fails
4
+ set -e
5
+
6
+ cd build
7
+ sudo make uninstall
8
+
9
+ # KRunner needs to be restarted for the changes to be applied
10
+ if pgrep -x krunner > /dev/null
11
+ then
12
+ kquitapp5 krunner
13
+ fi
14
+
You can’t perform that action at this time.
0 commit comments