将 Eclipse 配置为完成后发出蜂鸣声(Python、Linux)

发布于 2024-10-10 02:28:04 字数 369 浏览 4 评论 0原文

我将应用程序配置为在完成时发出蜂鸣声(帮助我在长时间运行时执行多任务)。 在 Windows 上这很简单:

def beep_please():
    """Beep on Windows"""
    if os.name == 'nt':
        import winsound #@UnresolvedImport
        winsound.MessageBeep(winsound.MB_ICONEXCLAMATION)

import atexit
atexit.register(beep_please)

问题是我最近切换到 Linux,简单的蜂鸣声不起作用。 打印 '\a' 也不起作用。 帮助?

I configured my applications to beep when done (helps me multitask on long runs).
On windows it was simple:

def beep_please():
    """Beep on Windows"""
    if os.name == 'nt':
        import winsound #@UnresolvedImport
        winsound.MessageBeep(winsound.MB_ICONEXCLAMATION)

import atexit
atexit.register(beep_please)

The problem is I recently switched to Linux and simple beeping doesn't work.
Printing '\a' doesn't work either.
Help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

べ映画 2024-10-17 02:28:04

尝试使用 sys.stdout.write('\007') 而不是 print '\a'

Try doing sys.stdout.write('\007') instead of print '\a'

好菇凉咱不稀罕他 2024-10-17 02:28:04

根本原因是大多数现代 Linux 发行版都关闭了烦人的默认“蜂鸣声”。
潜在的解决方案是使用 pygame,或直接使用已安装的“播放器”之一。

使用 Pygame 看起来像这样:

import pygame

pygame.init()
pygame.mixer.music.load("my_sound_file.ogg")
pygame.mixer.music.play()
pygame.event.wait()

但我不想为了非运行时实用程序而需要新的外部依赖项,所以我最终做的是:

import os
os.system("/usr/bin/canberra-gtk-play --id='system-ready'")

Ubuntu 主题中有很多其他声音文件:

ls /usr/share/sounds/ubuntu/stereo

Root cause is that most modern Linux distros turn off the annoying default "beep".
Potential solutions are using pygame, or using one of the installed "players" directly.

Using Pygame looks like this:

import pygame

pygame.init()
pygame.mixer.music.load("my_sound_file.ogg")
pygame.mixer.music.play()
pygame.event.wait()

But I did not want the new external dependency for the sake of a non-run-time utility, so what I ended up doing is:

import os
os.system("/usr/bin/canberra-gtk-play --id='system-ready'")

There are plenty of other sound files in the Ubuntu theme:

ls /usr/share/sounds/ubuntu/stereo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文