我是一名 KDE 用户,正在考虑转用 Unity。由于手动操作能力有限,我使用粘滞键在 KDE 中,系统面板中有一个小程序可以显示哪些修饰键处于活动状态。我记得 Gnome 也有此功能,Windows 和 OS X 也有。
如何将键盘修改状态小程序添加到 Unity 中的面板?
澄清:我已经启用了粘滞键。我想问如何添加一个小程序表示修饰键的状态。按下 Shift 键、按下 Alt 键、按下 Tux 键和按下 Ctrl 键时,此指示器都会显示。此小程序存在于所有主流桌面环境(KDE、Windows、Mac OSX 和 Gnome)中。它对于桌面的可访问性必不可少。
这是键盘修饰键状态小程序的图像,旁边是键盘布局指示器小程序。从左到右,修饰键分别为 、Shift
、Ctrl
、Alt
、I-dont-know-this-one
、Tux/Win
和NumLock
。CapsLock
可以看出 NumLock 键处于活动状态。
答案1
这是 Unity 中的一个未解决的问题:
以下代码已更新,现在可以使用图标来显示状态。但有时可能会变慢,因为我必须更新硬盘上的图标文件,然后重新加载它。(请参阅有关此问题/限制的说明libappindicator
)
已在 webupd8 ppa 上发布了一个打包良好的版本(感谢 Alin Andrei /Andrew/)
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install indicator-xkbmod
参考:Ubuntu 的键盘修改器状态指示器:Xkbmod 指示器
原始答案:
这不被认为是该问题的标准答案。它可以算作一种解决方法。希望有人能写出复杂的解决方案。
这是 Unity 的一个简单原型键盘修饰符指示器。
图像从左开始:图标、Shift、锁定 Caps、Ctrl、Alt、Super、锁定 AltGr(小圆圈表示锁定状态)
源文件unity-xkbmod.c
:
/*
* unity-xkbmod.c
*
* Copyright 2014 Sneetsher <sneetsher@localhost>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*
*/
#include <string.h>
#include <X11/XKBlib.h>
#include <glib/gprintf.h>
#include <gtk/gtk.h>
#include <libappindicator/app-indicator.h>
//callback data structure
typedef struct _AppData {
Display *_display;
int *_deviceId;
AppIndicator *indicator;
} AppData;
//menu ui
static GtkActionEntry entries[] = {
{ "Quit", "application-exit", "_Quit", "<control>Q",
"Exit the application", G_CALLBACK (gtk_main_quit) },
};
static guint n_entries = G_N_ELEMENTS (entries);
static const gchar *ui_info =
"<ui>"
" <popup name='IndicatorPopup'>"
" <menuitem action='Quit' />"
" </popup>"
"</ui>";
//callback function, get xkb state, update indicator label (icon have limitation)
static gboolean update_xkb_state (gpointer data)
{
//get xkb state
XkbStateRec xkbState;
XkbGetState(((AppData*) data)->_display, *(((AppData*) data)->_deviceId), &xkbState);
//construct label
GString *label = g_string_new("");
register int i;
unsigned bit;
//loop taken from xkbwatch source
for (i = XkbNumModifiers - 1, bit = 0x80; i >= 0; i--, bit >>= 1)
{
//printf("base%d %s ", i, (xkbState.base_mods & bit) ? "on " : "off");
//printf("latched%d %s ", i, (xkbState.latched_mods & bit) ? "on " : "off");
//printf("locked%d %s ", i, (xkbState.locked_mods & bit) ? "on " : "off");
//printf("effective%d %s ", i, (xkbState.mods & bit) ? "on " : "off");
//printf("compat%d %s\n", i, (xkbState.compat_state & bit) ? "on " : "off");
//todo: change constant with xkb modifier constant (defined in the headers)
// show effective modifier stat
switch (i)
{
case 7:
g_string_prepend (label, ((xkbState.mods & bit) ? "⎇" : ""));
break;
case 6:
g_string_prepend (label, ((xkbState.mods & bit) ? "⌘" : ""));
break;
case 5:
g_string_prepend (label, ((xkbState.mods & bit) ? "5" : ""));
break;
case 4:
g_string_prepend (label, ((xkbState.mods & bit) ? "①" : ""));
break;
case 3:
g_string_prepend (label, ((xkbState.mods & bit) ? "⌥" : ""));
break;
case 2:
g_string_prepend (label, ((xkbState.mods & bit) ? "⋀" : ""));
break;
case 1:
g_string_prepend (label, ((xkbState.mods & bit) ? "⇬" : ""));
break;
case 0:
g_string_prepend (label, ((xkbState.mods & bit) ? "⇧" : ""));
break;
default:
break;
};
// show if modifier is locked
g_string_prepend (label, ((xkbState.locked_mods & bit) ? " ˳" : " "));
}
//g_string_prepend (label, "");
app_indicator_set_label (((AppData*) data)->indicator, label->str, NULL);
//g_free(label);
return TRUE;
}
int main (int argc, char **argv)
{
AppData appdata;
Display *_display;
int _deviceId;
char* displayName = strdup("");
int eventCode;
int errorReturn;
int major = XkbMajorVersion;
int minor = XkbMinorVersion;;
int reasonReturn;
AppIndicator *indicator;
GtkWidget *indicator_menu;
GtkUIManager *uim;
GtkActionGroup *action_group;
GError *error = NULL;
gtk_init (&argc, &argv);
XkbIgnoreExtension(False);
g_printf("Xkb client lib ver: %d.%d\n" , major , minor );
_display = XkbOpenDisplay(displayName, &eventCode, &errorReturn,
&major, &minor, &reasonReturn);
g_printf("Xkb server lib ver: %d.%d\n" , major , minor );
if (reasonReturn != XkbOD_Success)
{
g_printf("Unable to open display!\n");
return 1;
}
XkbDescRec* kbdDescPtr = XkbAllocKeyboard();
if (kbdDescPtr == NULL)
{
g_printf ("Failed to get keyboard description.\n");
return 2;
}
kbdDescPtr->dpy = _display;
_deviceId = kbdDescPtr->device_spec;
/*
//no need for event listener, used gtk_timeout timer
XkbSelectEventDetails(_display, XkbUseCoreKbd, XkbStateNotify,
XkbAllStateComponentsMask, XkbGroupStateMask);
*/
action_group = gtk_action_group_new ("AppActions");
gtk_action_group_add_actions (action_group, entries, n_entries, NULL);
indicator = app_indicator_new_with_path (
"Simple XKB Modifier Indicator",
"icon",
APP_INDICATOR_CATEGORY_HARDWARE,
g_get_current_dir());
uim = gtk_ui_manager_new ();
gtk_ui_manager_insert_action_group (uim, action_group, 0);
if (!gtk_ui_manager_add_ui_from_string (uim, ui_info, -1, &error))
{
g_printf ("Failed to build menus: %s\n", error->message);
g_error_free (error);
error = NULL;
return 3;
}
indicator_menu = gtk_ui_manager_get_widget (uim, "/ui/IndicatorPopup");
app_indicator_set_menu (indicator, GTK_MENU (indicator_menu));
app_indicator_set_status (indicator, APP_INDICATOR_STATUS_ACTIVE);
//app_indicator_set_label (indicator, " ⇧ ⋀ ⌥ ⎇ ⌘ ", NULL);
//symbols: shift U21E7 ctrl U22C0 alt/altgr U2325 U2387 cmd U2318
//from font: DejaVu Sans
appdata._display = _display;
appdata._deviceId = &_deviceId;
appdata.indicator = indicator;
gtk_timeout_add (120, (GtkFunction) update_xkb_state, &appdata);
//nice for realtime tasks, to replace gtk_timeout
//gtk_idle_add ((GtkFunction) idle_func, &appdata);
gtk_main ();
XCloseDisplay (_display);
return 0;
}
安装所需的标题/库:(不确定是否遗漏了任何内容)
sudo apt-get install libx11-dev libappindicator-dev libgtk2.0-dev
编译:
gcc -Wall unity-xkbmod.c -o unity-xkbmod `pkg-config --cflags --libs appindicator-0.1` -lX11
跑步:
./unity-xkbmod
笔记:
libappindicator
用于 Unity 的指标缺少一个重要功能,即可以轻松移植其他桌面指标。参见 Bug #812067 所需 API:pixbuf 图标设置支持如果没有此功能,假设我们需要 (Shift、Ctrl、Alt、AltGr、Super) 并激活粘滞键;我们为每个键设置 3 个主要状态 (关闭、开启/锁定、锁定)。因此3^5应该生成组合图标。(正常情况下3x5单个图标)
这就是为什么我使用带有符号的指示标签DejaVu Sans字型。
要放置图标,请将其放在同一文件夹中并命名
icon.*
。可接受的格式:png、svg、ico、xpm...如果您不喜欢任何图标,只需创建一个 1x1 像素的图像。
参考:
答案2
另一个解决方案并不完美,但有些人可能会发现它很有用,因为它可以像在 KDE 中一样拥有完整的功能,例如通过单击激活模块。
安装
kbstate
小程序sudo apt-get install plasma-widget-kbstate kde-workspace-bin
plasma-windowed
在播放器中运行常规窗口
plasma-windowed kbstate
无边框窗口
plasma-windowed --noborder kbstate
我没有太多时间玩,但wmctrl
可能有助于在启动时定位、调整大小并使其处于顶部。
答案3
我搜索了 Ubuntu 粘滞键监视器并发现了一些可能有帮助的内容: http://code.google.com/p/key-mon/
尝试运行
key-mon --sticky
支持粘滞键。
参考:http://code.google.com/p/key-mon/
请注意,软件中心提供的版本是 1.6-0ubuntu1。发布于 2011 年 6 月,不支持 --sticky 开关。如果指示器与上图完全相同,则表示您使用的是旧版本尝试最新版本http://code.google.com/p/key-mon/截至撰写本文时,它是 keymon_1.17-1_all.deb 229 KB,发布于 2014 年 1 月 3 日。已测试并确认支持 --sticky 开关。