我在awesome中使用官方Wiki的代码试图实现内存控件,但是使用后没有反应。。
awesome v3.5.1 (Ruby Tuesday)
• Build: Sep 12 2013 20:14:11 for x86_64 by gcc version 4.8.1 (nobody@)
• Compiled against Lua 5.2.2 (running with Lua 5.2)
• D-Bus support: ✔
Name : vicious
Version : 2.1.1-1
Description : Widgets for the Awesome window manager
Architecture : any
URL : http://git.sysphere.org/vicious/about/
Licenses : GPL2
Groups : None
Provides : None
Depends On : lua
Optional Deps : hddtemp: for the HDD Temp widget type
alsa-utils: for the Volume widget type [installed]
wireless_tools: for the Wireless widget type
curl: for widget types accessing network resources [installed]
Required By : None
Optional For : awesome
Conflicts With : None
Replaces : None
Installed Size : 122.00 KiB
Packager : Sébastien Luttringer <seblu@seblu.net>
Build Date : Mon 27 May 2013 10:48:48 PM UTC
Install Date : Fri 27 Sep 2013 06:21:02 AM UTC
Install Reason : Explicitly installed
Install Script : No
Validated By : Signature
------------------------------Memory From Wiki
vicious = require("vicious")
-- Initialize widget
memwidget = awful.widget.progressbar()
-- Progressbar properties
memwidget:set_width(8)
memwidget:set_height(10)
memwidget:set_vertical(true)
memwidget:set_background_color("#494B4F")
memwidget:set_border_color(nil)
memwidget:set_color({ type = "linear", from = { 0, 0 }, to = { 10,0 }, stops = { {0, "#AECF96"}, {0.5, "#88A175"},
{1, "#FF5656"}}})
-- Register widget
vicious.register(memwidget, vicious.widgets.mem, "$1", 13)
------------------------------Seem not used
Oct 02, 2013 08:11:19 PM
gui_gtk_x11.c 是 GTK 2 + X11 方面的文件,对应的操作在 Win32 上为 gui_wxxx.c。不过因为 Windows 和类 Unix 系统非常不同,我不认为移植 vimshell 的成功率有多高。
如果实在无法离开 Windows,可考虑使用 Cygwin 或者虚拟机。至于弹出 cmd.exe 的窗口,可考虑使用 vimproc 插件来取代调用 cmd.exe 的命令。
Oct 02, 2013 11:42:13 AM
你好,我是一个vim爱好者,我喜欢linux下的小工具,所以在windows下安装了mingw,然而windows下只有gvim好用点,但是每次打开终端时,都弹出dos窗口,而且用gdb不方便,于是我想修改www.wana.at里的vimshell.但是不知道gui_gtk_x11.c对应着gvim的哪个文件,如果可以,希望你能帮我们将vimshell patch 改得能在windows下使用,我现在使用的是gvim74. :)
Sep 28, 2013 10:58:58 PM
你这样只是创建了一个 widget,没说要把它显示在 wibox 上。可参考下我的 rc.lua 配置 :-)
Sep 28, 2013 05:24:13 PM
我是Lua新手,其他的都没改
Sep 28, 2013 01:22:31 PM
你把 memwidget 加到 wibox 里了没?
Sep 28, 2013 10:31:38 AM
我在awesome中使用官方Wiki的代码试图实现内存控件,但是使用后没有反应。。
awesome v3.5.1 (Ruby Tuesday)
• Build: Sep 12 2013 20:14:11 for x86_64 by gcc version 4.8.1 (nobody@)
• Compiled against Lua 5.2.2 (running with Lua 5.2)
• D-Bus support: ✔
Name : vicious
Version : 2.1.1-1
Description : Widgets for the Awesome window manager
Architecture : any
URL : http://git.sysphere.org/vicious/about/
Licenses : GPL2
Groups : None
Provides : None
Depends On : lua
Optional Deps : hddtemp: for the HDD Temp widget type
alsa-utils: for the Volume widget type [installed]
wireless_tools: for the Wireless widget type
curl: for widget types accessing network resources [installed]
Required By : None
Optional For : awesome
Conflicts With : None
Replaces : None
Installed Size : 122.00 KiB
Packager : Sébastien Luttringer <seblu@seblu.net>
Build Date : Mon 27 May 2013 10:48:48 PM UTC
Install Date : Fri 27 Sep 2013 06:21:02 AM UTC
Install Reason : Explicitly installed
Install Script : No
Validated By : Signature
------------------------------Memory From Wiki
vicious = require("vicious")
-- Initialize widget
memwidget = awful.widget.progressbar()
-- Progressbar properties
memwidget:set_width(8)
memwidget:set_height(10)
memwidget:set_vertical(true)
memwidget:set_background_color("#494B4F")
memwidget:set_border_color(nil)
memwidget:set_color({ type = "linear", from = { 0, 0 }, to = { 10,0 }, stops = { {0, "#AECF96"}, {0.5, "#88A175"},
{1, "#FF5656"}}})
-- Register widget
vicious.register(memwidget, vicious.widgets.mem, "$1", 13)
------------------------------Seem not used
Sep 17, 2013 09:41:38 PM
不知道呢,我现在在关注往 Kindle 上编译各种东西啦=w=
Sep 17, 2013 07:52:08 PM
仙子最近在学日语吗?另外,仙子你知道怎么编写mobi版本的字典吗?
Aug 22, 2013 06:01:04 PM
不知道呢。也许你可以试一下信号?
Aug 22, 2013 10:40:53 AM
你好。我想请教你一下,能在C里不通过LUA脚本直接挂起和唤醒LUA吗? 也就是用C语言在任何时刻直接挂起和唤醒LUA。
Aug 14, 2013 03:57:30 PM
好的,谢谢。
Aug 13, 2013 10:08:24 PM
必须用和编译时一致的 Python 版本(版本号前两位),不然可能出错(而 3.3 相对 3.2 在字符串处理上有极大的改变)。我编译的 gvim 用的是 Python 3.3,你可以试下。
Aug 13, 2013 03:36:22 PM
是我之前没说清楚。
我安装的python33, 目录是C:\Python33, 在C:\Windows\system32 下有python33.dll。
我把C:\Windows\system32的python33.dll改名为python32.dll。在vim下输入,提示无法加载Pyunicode_AsString函数。
难道必须要使用python32吗?
Aug 12, 2013 09:42:43 PM
找了一下,正常安装的话 python32.dll 在 C:\Windows\system32 下。那个 python3.dll 不知道是干什么的。
Aug 12, 2013 04:25:54 PM
那个不需要特别的配置的。你使用官方 msi 安装对应版本的 Python 即可。如果使用的是非安装版的 Python 就有些麻烦了。你的 Python 安装看起来好奇怪,它默认的安装目录名是 Python32,python32.dll 应该在它下边就有。
我的 Email 地址前缀就在博客 URL 里,@gmail.com。
Aug 12, 2013 04:01:52 PM
如何配置vim python3 接口。 vim7.4,winxp下。
直接输入:py3 print("hello") 提示找不到python32.dll。
将C:\python\DLL\python3.dll复制到C:\python\python32.dll。
再输入:py3 print("hello") 提示无法加载函数Pyrun_SimpleString。
另外请问,你的Email是多少?
谢谢。
Aug 05, 2013 01:41:42 PM
膜拜下大神!
Jul 31, 2013 10:45:18 PM
ok
Jul 31, 2013 09:48:43 AM
那些链接的数据没有在页面源码中出现,那么很可能是 Ajax 请求得到的(另一种可能是加密/混淆过)。打开 Firebug 再加载页面,就瞅到这个 Ajax 请求啦。
Jul 31, 2013 01:21:44 AM
依云大大,你是用什么方法获得这个json的,想知道方法
http://www.tudou.com/plcover/coverPage/getIndexItems.html?lid=8501558&page=1&pageSize=60