当前位置: 首页>>技术教程>>正文


Ubuntu 14.04 Unity 中的计时器/秒表?

,

问题描述

Easy StopwatchZeegaree Lite 在 Ubuntu 中似乎不可用。

我可以在 Ubuntu 14.04 (Trusty Tahr) 中安装什么计时器/秒表?

最佳思路

你试过”stopwatch”吗?

如果您不喜欢 GUI,请使用终端安装命令:

sudo apt-get install stopwatch

它也可以从您的 Ubuntu 软件中心轻松安装。您可以通过在搜索窗口中输入秒表来找到它。或者,如果您愿意,也可以在突触包管理器中找到它。

以下链接会告诉您更多相关信息,尽管它与您打开 Ubuntu 软件管理器时看到的信息完全相同。

https://apps.ubuntu.com/cat/applications/precise/stopwatch/

次佳思路

Gnome Clocks 很好,可以通过 Ubuntu 软件管理器轻松安装,至少在 18.04 上,或者从命令行通过 sudo apt install gnome-clocks 安装。它具有相当少的依赖项(至少不需要 Gnome Shell)。

它有一个秒表和一个计时器,以及世界时钟和闹钟:

https://help.gnome.org/users/gnome-clocks/stable/

online stopwatch and timer 很好也很容易,但似乎在 chrome 中占用了大量的 CPU。 Gnome Clocks 的 CPU 开销非常低。

第三种思路

在 Synaptic 中的快速搜索显示了一些计时器,gtimer(出现独立,看起来有几个选项和计时器),stopwatch 看起来不错,gnome-shell-timer(对于 gnome-shell,可能在 Unity 中不起作用),ktimer(有很多 KDE依赖项), xfce4-timer-plugin

这些看起来足够好吗?

万一他们没有为您显示,即使在 apt-get update 之后,您也可能没有选择所有存储库组件(主宇宙受限多元宇宙)。有关存储库 https://help.ubuntu.com/community/Repositories/Ubuntu 的信息,请参阅此链接

第四种思路

我用了

$ sudo apt install alarm-clock-applet

作为我女儿的计时器。工作正常。我试过秒表但不喜欢它。

看起来像这样:

第五种思路

我找不到我喜欢的任何东西,但网络应用程序似乎是一个很好的竞争者。

http://www.timer-tab.com/ 以及 Chrome 商店。

第六种思路

在查看了一堆可用的茶计时器包后,我选择了最简单的自制 bash 脚本:

#!/usr/bin/env bash

SND=/usr/share/sounds/gnome/default/alerts/drip.ogg
mplayer "$SND" && notify-send "TEA: $(date +'%A, %d-%B-%y: %Hh %Mm %Ss')"
sleep 50 && mplayer "$SND" && notify-send "Tea: ETA: 50 sec"
sleep 20 && mplayer "$SND" && notify-send "Tea: ETA: 1 min 10 sec"
sleep 20 && mplayer "$SND" && notify-send "Tea: ETA: 1 min 30 sec"
sleep 30 && mplayer "$SND" && notify-send "Tea: ETA: 2 min"
sleep 180 && mplayer "$SND" && notify-send "Tea: ETA: 5 min"

\\n

\\n

Keep in mind that Ubuntu might suppress the notifications for example when a video is playing or the flash player is active. For cases like this append --urgency=critical at the end of the notify-send command.

\\n

\\n

它以指定的时间间隔显示通知并通过 mplayer 发出声音。调整以满足您的需求。


\n在较旧的桌面版本上,可以使用 zenity 在通知区域中显示带有可悬停经过时间的图标,但在 Gnome3 和当前版本的 Unity zenity 通知图标下不再起作用。

第七种思路

Zeegaree Lite 和 Zeegaree 现在都可以在 github 上找到。他们不再在南加州大学的原因在这里解释:https://web.archive.org/web/20190406121732/http://zeegaree.com/2014/10/zeegaree-and-zeegaree-lite-no-longer-available-in-ubuntu-software-center/

Zeegaree Lite at github \n Zeegaree at github

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/12939.html,未经允许,请勿转载。