実例:
$ ls -F librep/ rep-gtk/ sawfish/ $ for d in librep rep-gtk sawfish > do > cd $d && \ > ./configure --prefix=/usr/local && make 2>build-err.log > done $ su # for d in librep rep-gtk sawfish > do > cd $d && make install 2>install-err.log > doneもしうまくできなかったら、build-err.log や install-err.log を見てから原因を よく考えましょう。どうしてもわからなければ、私宛か gnome-users@gnome.gr.jp 宛、BBS などへ出して下さい。
(setq fonts-are-fontsets t) (setq default-font (get-font "-misc-fixed-medium-r-normal--10-90-75-75-c-50-iso8859-1, -misc-fixed-medium-r-normal--10-90-75-75-c-100-jisx0208.1983-0")) (setq tooltips-font (get-font "-misc-fixed-medium-r-normal--10-90-75-75-c-50-iso8859-1, -misc-fixed-medium-r-normal--10-90-75-75-c-100-jisx0208.1983-0"))当然、指定するフォントは fonts.alias などに存在するものを指定して下 さい。また、~/.sawfish/custom 内でのフォント設定部分は削ってしまいます。
回避するにはその theme.jl のフォント設定部分を日本語フォントを指定するように書き変えてしまう、というのが一番簡単だと思います。
(setq load-path (cons (expand-file-name "~/.sawfish/lisp") load-path))次にソース(ex. hoge.jl)を書きます. そしてソースを ~/.sawfishrc から 読み込みます.
(load "hoge")
$ sawfish --batch --no-rc compiler -f compile-lib-batch ./また特定の .jl (ex. hoge.jl) をコンパイルするなら
$ sawfish --batch --no-rc compiler -f compile-batch hoge.jl
! If you encounter a strange phenomenon where kinput2's mode display ! window is flickering and you cannot type in any text, try enabling ! the following resource. This phenomenon is caused by the incorrent ! focus management of your window manager, and this resource avoids ! it by making the window manager totally ignore the mode window. !*OverTheSpotConversion.UseOverrideShellForMode: True
または ~/.Xresources などに上でコメントアウトするのと同じ内容を付け 加えます.
これはメニューを表示するのに rep インタプリタが起動するからで、その起 動に少し時間がかかるためです。つまり、rep インタプリタは普段は動いてい ません。
そこでタイムラグなしにメニューを表示するには rep インタプリタを常時動
かしておけばいいということになります。それには以下のようなコードを
(require 'menus) (setq menu-program-stays-running t) (menu-start-process)ただし、rep インタプリタが常時動いていることでメモリ消費量は若干増え ます。
Alt キーを押しながらウィンドウの任意の一部分をドラッグしてください。
ウィンドウ内の任意の場所で、Alt キーを押しながらマウス中央ボタンを押して下さい。ウィンドウメニューが表示されると思います。
[ go back to HOME| news| download| faq| tips| documentation| themes| BBS| link ]