Archive for 12月, 2006
conky的配置
conky这东西不错,但是以前好像是叫torsmo的,不知道什么时候改名了!呵呵。在网上找了一下它的配置,发现这篇文章还不错,E文的原文在:http://conky.sourceforge.net/gnome.html
转一下:
| 引用: |
| Conky and Gnome How to configure gnome and conky to work together.1) Overview 1)概述The purpose of this document is to give a basic understanding of how to use Conky with the Gnome Window Manager. Gnome uses, by default, a file manager called nautilus, which also manages the icons on the desktop. For some reason, the way nautilus draws the icons to the desktop, conflicts with conky drawing to the desktop, usually causing the icons to disappear, or causing conky to show, then quickly disappear until it’s next update. Here, I will present a few ways to get around this. 这篇文档的目的是给一些关于如何在Gnome管理器中使用Conky的基本理解。Gnome下默认的文件管理器叫nautilus,它同样也用来管理图标和桌面。通常由于某些原因,nautilus在桌面上描绘图标与conky冲突,通常会造成桌面上图标消失不见,或者是conky消失,然后在更新时又迅速出现。这儿,我将要介绍一些关于这个的方法。 2) First Solution – Conky and devilspie By default, conky will draw to the “root” window (your desktop). This is what causes the conflict with nautilus. That being said, conky can operate fairly well with just it’s -o (own window) option. NOTE: In order to get conky to draw it’s own window, you must either run conky as `conky -o` or set “own_window yes” in your .conkyrc The only problem with telling conky to draw it’s own window in gnome, is that it will appear on only a single virtual desktop, and it will show on the pager and takbar. In order to fix this, you must use a Window Management program (some examples include wmctrl and devilspie). For this example, I will show you how to configure devilspie (versions <=0.12 and >=0.13) to spread conky across all desktops and hide it from the pager and taskbar. First, Install devilspie. (This may vary by distribution) Homepage: http://www.burtonini.com/blog/computers/devilspie Next, you will have to configure devilspie. Please make sure you configure it for the CORRECT VERSION. The configuration CHANGED as of devilspie version 0.13, and it is NOT compatible with previous configurations. Version 0.12 and below: Create a file called .devilspie.xml in your user’s home (~) directory. A basic configuration of devilspie is as follows: Code: <?xml version=”1.0″?> Version 0.13 and later: Create a file called conky.ds in a directory called .devilspie your user’s home (~) directory (to create the directory, use `mkdir .devilspie` and to create the file, `touch .devilspie/conky.ds`). A basic configuration of devilspie is as follows: Code: (if (matches (window_name) “.*conky”) (begin pin (skip_pager) (skip_tasklist))) Configuring Gnome Once conky and devilspie are properly configured, you can make them both automatically start when Gnome starts. 3) Second Solution – Disabling Nautilus Rather than installing devilspie (or another window management application), some users may find it helpful to instead keep nautilus from drawing to the root window. To do this, run gconf-editor and uncheck show_desktop in Apps/Nautilus/Preferences/. The downside of disabling nautilus from drawing to the root window is that you will no longer have icons on the desktop, or be able to right-click on the desktop. This project is also generously hosted by sourceforge. SourceForge.net Logo Valid XHTML 1.0 Strict Valid CSS! |
下面是我的配置文件:
| 代码: |
| # Conky sample configuration # # the list of variables has been removed from this file in favour # of keeping the documentation more maintainable. # Check http://conky.sf.net for an up-to-date-list.# set to yes if you want Conky to be forked in the background background no# X font when Xft is disabled, you can pick one with program xfontsel #font 5×7 font 6×10 #font 7×13 #font 8×13 #font 9×15 #font *mintsmild.se* #font -*-*-*-*-*-*-34-*-*-*-*-*-*-* # Use Xft? # Set conky on the bottom of all other applications # Xft font when Xft is enabled # Text alpha when using Xft # Print everything to stdout? # MPD host/port # Print everything to console? # mail spool # Update interval in seconds # This is the number of times Conky will update before quitting. # Create own window instead of using desktop (required in nautilus) # If own_window is yes, you may use type normal, desktop or override # Use pseudo transparency with own_window? # If own_window_transparent is set to no, you can set the background colour here # If own_window is yes, these window manager hints may be used # Use double buffering (reduces flicker, may not work for everyone) # Minimum size of text area # Draw shades? # Draw outlines? # Draw borders around text # Draw borders around graphs # Stippled borders? # border margins # border width # Default colors and also border colors # Text alignment, other possible values are commented # Gap between borders of screen and text # Subtract file system buffers from used memory? # set to yes if you want all text to be in uppercase # number of cpu samples to average # number of net samples to average # Force UTF8? note that UTF8 support required XFT # Add spaces to keep things from moving about? This only affects certain objects. # mldonkey_hostname Hostname for mldonkey stuff, defaults to localhost # boinc (seti) dir # Allow for the creation of at least this number of port monitors (if 0 or not set, default is 16) # Allow each port monitor to track at least this many connections (if 0 or not set, default is 256) # none, xmms, bmp, audacious, infopipe (default is none) # variable is given either in format $variable or in ${variable}. Latter # stuff after ‘TEXT’ will be formatted on screen TEXT ${color DeepPink1}$nodename – $sysname $kernel on $machine |
附效果图:
终于把mid3v2命令加到下载百度歌曲的脚本里面了
如下,程序会自动判断有没有安装mid3v2,如果装了就会把下载的歌曲原来的id3信息删掉,再设置歌曲名和歌手名,再也不怕歌曲里有乱七八糟的广告信息了。
| 代码: |
| #!/bin/bash #Copyright (c) 2005 ubuntu.org.cn #License: GPLv2 #强烈建议安装axel(多线程下载工具)和mid3v2(包含在python-mutagen里,用于修改歌曲的id3信息)#mp3的地址 SOURCE=”http://list.mp3.baidu.com/list/newhits.html” #保存mp3的目录 #下载重试次数 #临时目录 #创建下载目录 #创建临时下载目录 echo “开始下载百度最新100首歌曲列表” #转换网页编码 grep ” href=\”http://mp3.baidu.com/m” |\ #将mp3list.txt所有开头的空格去掉 #将mp3list.txt所有开头的tab去掉 #将mp3list.txt所有全角空格去掉 #将所有的回车符去掉 #在td>,后面加上回车符,一行表示一个mp3文件。 #删除<td width=”30%”> <td> </td> <td…FFFFFF”> <p> </p> #删除</a>…”_blank”> #删除& #得到:<a href=”http://mp3.baidu.com/m?tn=baidump3&ct=134217728&lm=-1&li=2&word=Baby%20Baby%20tell%20me%20%CD%F5%D0%C4%C1%E8″ target=”_blank”>Baby ,Baby tell me-王心凌</a> #取得行号,循环 #检查是否已经下载过这首歌,如果下载过,放弃 echo "开始通过 $url 下载 $name"; #down.txt为有效的下载地址 #size.txt为有效的下载文件大小 #down.txt与size.txt合并而在的down_size.txt文件中字段之间以"`"作为分隔符 #排序 #去掉后面的尺寸 ##### 析取出mp3 的下载地址或 wma的下载地址 ############## downline_mp3=$(awk 'END{print NR}' ${TMP}/down_mp3.txt); #如果下载成功继续下其余的歌 # 如果没有mp3格式的则下载wma格式的歌 #echo -e "\e[1;6m\e[1;31m中转页面地址为${mp3}\e[1;6m\e[00m" ((i++)) |
编辑歌曲id3信息的命令行工具
命令行下更新mp3的id3v2的信息工具:
| 代码: |
| sudo apt-get install python-mutagen |
这里面包含了几个有用的命令行小工具。其中mid3iconv可以把歌曲中原有的非utf8的id3信息转换成uft8编码; mid3v2可以自己设置id3信息。
mid3v2用法如下:
| 代码: |
| mid3v2 -t “蝴蝶泉边” -a “黄雅莉” 蝴蝶泉边-黄雅莉.mp3 |
呵呵,下次把这个东西写到百度新歌的下载脚本里面去就爽了。
另外还有一个基于java的小工具,功能和mid3iconv差不多,也是转换编码用的,给出主页地址:
http://www.cs.berkeley.edu/~zf/id3iconv/
torsmo原来已经改名叫conky了啊
装了edgy以后一直在找torsmo,以前dapper的源里面是有的,但现在没有了,我觉得挺好用的。
后来才发现已经改名叫conky了。呵呵,还是一样的好用!
