关机脚本(Linux,依赖于ConsoleKit)

为了更方面地用 Awesome 作为主窗口管理器,于是参考了 Blingbling 模块的关机/重启按钮,写了两个小脚本。使用 ConsoleKit 来实现关机/重启操作,使用 zenity 图形化。

关机脚本(ck-shutdown,因为使用了ConsoleKit)

#!/bin/sh

if zenity --question \
          --title "Reboot?" \
          --text "Are you sure to reboot?";
then
    dbus-send --system --print-reply \
              --dest="org.freedesktop.ConsoleKit" \
              /org/freedesktop/ConsoleKit/Manager \
              org.freedesktop.ConsoleKit.Manager.Restart;
fi

重启脚本(ck-reboot):

#!/bin/sh

if zenity --question \
          --title "Shutdown?" \
          --text "Do you want to shutdown?";
then
    dbus-send --system --print-reply \
              --dest="org.freedesktop.ConsoleKit" \
              /org/freedesktop/ConsoleKit/Manager \
              org.freedesktop.ConsoleKit.Manager.Stop
fi

不过看到 freedesktop 上 ConsoleKit 项目的介绍,似乎 ConsoleKit 的开发并不活跃,可能被 Systemd 相关项目替代。不过至少现在可以正常在 Ubuntu 12.04 下使用……

NASM 文档 - Section 3

这篇翻译是当时学习汇编语言的时候写的。当时课本用的是MASM,但可惜MASM没有Linux版,因此,用起来不太方便。于是,参考了Linux下一些汇编器的语法后,觉得NASM和MASM的比较相似,于是就试着看NASM的文档,也试着翻译。所以,这里只是翻译了第三节,关于NASM语法的文章。

关于NASM更多信息,请访问:http://www.nasm.us/

Fluxbox for MagicLinux

Fluxbox 1.0.0

for Magic Linux 2.1

Fluxbox是一个轻量级的窗口管理器,基于Blackbox 0.61.1的源码。更多信息请访问其官方网站。

下载:

http://www.fs2you.com/files/cece7ea8-cf9a-11dc-be2f-0014221f4662/

官方网站:

http://www.fluxbox.org