Linux 方式 - 安装pqiv
“Linux Way”似乎正在安装另一个软件包:
$ sudo apt install pqiv
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
pqiv
0 upgraded, 1 newly installed, 0 to remove and 11 not upgraded.
Need to get 34.6 kB of archives.
After this operation, 136 kB of additional disk space will be used.
Get:1 http://ca.archive.ubuntu.com/ubuntu xenial/universe amd64 pqiv amd64 2.2-1 [34.6 kB]
Fetched 34.6 kB in 0s (96.0 kB/s)
Selecting previously unselected package pqiv.
(Reading database ... 442035 files and directories currently installed.)
Preparing to unpack .../archives/pqiv_2.2-1_amd64.deb ...
Unpacking pqiv (2.2-1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Setting up pqiv (2.2-1) ...
但是,由于我必须xdotool
为我的应用程序安装和其他软件包,还有什么是对的?另外,它会让码头工人高兴:)
好消息是它只有 136KB,并且会自动将启动画面放置在活动显示器的中心,而不是主显示器的中心或 X11 屏幕的中心(这在三个不同分辨率的显示器系统上看起来很有趣)。
打电话pqiv
从命令行(您可以在 Python 中使用os.popen()
或轻松复制subprocess.Popen()
)您只需键入:
pqiv -c -c -i m.png
png
这是我的图像的样子:
结束pqiv
在终端中,我必须在加载完成时发送Control+ 。C在 Python 中,您将不得不grep
输出ps
和kill
作业。我想在 Linux 中非常简单,但对我们的 Windows 朋友来说可能很陌生。
归功于超级用户的回答。