QualCoder is an open-source qualitative analysis program available on Linux, MacOS, and Windows operating systems. If you're a Linux user, QualCoder affords qualitative analysis in the comfort of your own desktop environment — custom status bar, tiling window manager, and all.
But, just launching QualCoder requires opening a terminal, navigating to
your QualCoder installation, activating QualCoder's virtual environment,
finally entering qualcoder &
, and closing the terminal.
That's too many steps.
With a script and a configuration file, though, you can launch QualCoder without touching a terminal.
To run QualCoder without touching a terminal, you have to be able to launch it without manually navigating to its directory and activating its virtual environment. If you script these actions, you can run QualCoder by just running the script.
On Linux, PATH
is a global variable listing the directories your
system can find executable programs in.
If you put a script in one of those directories, you can run QualCoder from any
directory.
qualcoder
in your preferred text editor.qualcoder
file.
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
QUALCODER_DIRECTORY
on line 3 with
the full path to your QualCoder installation.qualcoder
as executable. This can be done
with the command chmod +x qualcoder
../qualcoder
. QualCoder should launch.PATH
Directoryecho $PATH
.
This prints the value of your PATH
variable.:
).
1 | |
PATH
output.
I picked /home/aldats/.local/bin
.qualcoder
script to the directory at the path you picked.qualcoder
.
QualCoder should launch.On Linux, launchers generate a list of launchable programs by looking for
special desktop files in directories like
/usr/share/applications/
and
~/.local/share/applications/
.
If you make a desktop file for QualCoder in one of these directories, you can
run QualCoder with a launcher.
qualcoder.desktop
in your preferred text editor.qualcoder.desktop
.
1 | |
2 | |
3 | |
4 | |
5 | |
qualcoder.desktop
file to a directory your launcher will
find desktop files in, like
/usr/share/applications/
or
~/.local/share/applications/
.After following these steps, you should be able to launch QualCoder using your preferred launcher — and without a terminal!