8/08/2009
8/06/2009
nautilus script : copy selected path to clipboard
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# file copy_sel_path_to_clipboard.py
import os, gtk #, glob
def showme(s):
os.system('gmessage -center -title "Path" "' + str(s) + '"')
tmp = os.environ['NAUTILUS_SCRIPT_SELECTED_FILE_PATHS']
fns = tmp.strip().split('\n') #filenames
if len(fns) == 1 :
cb = gtk.clipboard_get()
cb.set_text(fns[0])
cb.store()
else :
showme('Only 1 file must be selected')
8/05/2009
8/04/2009
Keep theme for sudo and root sessions
sudo ln -s ~ref : http://thedarkmaster.wordpress.com/2007/07/03/root-applications-looking-bad-in-gnome-set-the-proper-theme//.themes /root/.themes
sudo ln -s ~/.icons /root/.icons
sudo ln -s ~/.fonts /root/.fonts
피드 구독하기:
글 (Atom)
stani wrote on 2009-05-22:
ref : https://bugs.launchpad.net/debian/+source/spe/+bug/377044