File tree 3 files changed +5
-16
lines changed
3 files changed +5
-16
lines changed Original file line number Diff line number Diff line change 1
1
Installing Octopi is a pretty straightforward task.
2
2
3
- Assuming you have updated Qt4(*) libs installed in your system, all
3
+ Assuming you have updated Qt5 libs installed in your system, all
4
4
you have to do is run:
5
5
6
6
makepkg -f
7
7
8
8
Wait for the compilation and then install the generated package (as
9
9
root), using:
10
10
11
- pacman -U [--force] <nameOfTheGeneratedOctopiPackage.tar.xz >
11
+ pacman -U <nameOfTheGeneratedOctopiPackage.tar.[xz|zst] >
12
12
13
- You can also install the generated package notifier, using:
14
-
15
- pacman -U [--force] <nameOfTheGeneratedOctopiNotifierPackage.tar.xz>
16
-
17
- Octopi is located at the system utilities menu of your Desktop
13
+ Octopi is located on the system utilities menu of your Desktop
18
14
Environment.
19
15
20
16
21
17
Enjoy!
22
-
23
- (*) Octopi is also Qt5 compatible, you'll only have to adjust the
24
- "depends" section in PKGBUILD.
25
-
26
- If you are compiling Octopi in a KDE centric-distro like KaOS and Chakra, you should
27
- first uncomment the "#define NO_GTK_STYLE" string located at "src/main.cpp" and
28
- "notifier/octopi-notifier/main.cpp", otherwise it won't compile at all.
Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ void QtSingleApplication::activateWindow(const QString &message)
405
405
}
406
406
}
407
407
}
408
- else if (actWin && message.contains (" pkg.tar.xz" )) {
408
+ else if (actWin && ( message.contains (" pkg.tar.xz" ) || (message. contains ( " pkg.tar.zst " )) )) {
409
409
actWin->setWindowState (actWin->windowState () & ~Qt::WindowMinimized);
410
410
actWin->raise ();
411
411
if (actWin->isHidden ())
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ int main(int argc, char *argv[])
52
52
for (int c=1 ; c<argc; c++)
53
53
{
54
54
arg = argv[c];
55
- if (arg.contains (QRegularExpression (" pkg.tar.[gz|xz ]" )))
55
+ if (arg.contains (QRegularExpression (" pkg.tar.[xz|zst ]" )))
56
56
{
57
57
packagesToInstall += arg + " ," ;
58
58
}
You can’t perform that action at this time.
0 commit comments