rename: qsRun => qsrun
This commit is contained in:
parent
57bed56dcd
commit
7379cff7db
17
README.md
17
README.md
@ -1,11 +1,11 @@
|
|||||||
qsRun
|
qsrun
|
||||||
========
|
========
|
||||||
qsRun is a launcher. It contains user defined entries for applications and also searches
|
qsrun is a launcher. It contains user defined entries for applications and also searches
|
||||||
system-applications. Using libcalculate, it can also be used as a calculator.
|
system-applications. Using libcalculate, it can also be used as a calculator.
|
||||||
|
|
||||||
If you run a desktop environment like KDE it is questionable whether you will
|
If you run a desktop environment like KDE it is questionable whether you will
|
||||||
find this useful, since they usually bring applications that are more or less
|
find this useful, since they usually bring applications that are more or less
|
||||||
comparable to qsRun, although much more
|
comparable to qsrun, although much more
|
||||||
powerful (like KRunner). It can be useful for users running a window manager like
|
powerful (like KRunner). It can be useful for users running a window manager like
|
||||||
fluxbox etc.
|
fluxbox etc.
|
||||||
|
|
||||||
@ -17,17 +17,24 @@ For the calculation engine, libqalculate is needed.
|
|||||||
|
|
||||||
Currently no conditional compile flags are supported...
|
Currently no conditional compile flags are supported...
|
||||||
|
|
||||||
|
Building
|
||||||
|
========
|
||||||
|
qmake
|
||||||
|
make
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Getting started
|
Getting started
|
||||||
----------------
|
----------------
|
||||||
Currently it may not be considered a classical GUI application because the
|
Currently it may not be considered a classical GUI application because the
|
||||||
configuration must be done outside of it.
|
configuration must be done outside of it.
|
||||||
|
|
||||||
mkdir $HOME/.config/qsRun
|
mkdir $HOME/.config/qsrun
|
||||||
In this folder user-defined entries should be put (See "Entry format").
|
In this folder user-defined entries should be put (See "Entry format").
|
||||||
|
|
||||||
Config format
|
Config format
|
||||||
------------
|
------------
|
||||||
Path: $HOME/.config/qsRun/qsrunner.config
|
Path: $HOME/.config/qsrun/qsrunner.config
|
||||||
|
|
||||||
```
|
```
|
||||||
[General]
|
[General]
|
||||||
|
2
main.cpp
2
main.cpp
@ -36,7 +36,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
configDirectoryPath = QDir::homePath() + "/.config/qsRun/";
|
configDirectoryPath = QDir::homePath() + "/.config/qsrun/";
|
||||||
}
|
}
|
||||||
qRegisterMetaType<QVector<QString> >("QVector<QString>");
|
qRegisterMetaType<QVector<QString> >("QVector<QString>");
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
TARGET = qsRun
|
TARGET = qsrun
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
|
|
||||||
# Input
|
# Input
|
Loading…
Reference in New Issue
Block a user