You are not logged in.
ArchGhOul, if you prefer xterm only because of its font and colors, you should take a look at this phrakture's article about console colors
I already use a custom setup for my console colors (and yes..that phraktured site is the one I used to get the setup)
What you see in my screenshot is NOT Xterm under X! Is's the normal console, I used fbgrab to take the shot...
I have my console font set to "ter-u12n" (terminus), and I run arch with vga=792 so I get 1024x768 under console..with a nice font.. Who needs X heh?
@kant1
Well I don't (and can't!) use Firefox or any other application under normal X when I run it as I said. If I really need Firefox and other X stuff, I just run ratpoison (big fan of that too )...
[edit] actually... http://hocwp.free.fr/xbindkeys/xbindkeys.html might be a good way to switch them..not sure though...
@SilentMan
Love your DWM setup. I'm an old dwm lover too..I even hacked it to use a config file for colors and tags (really bad hack but it did work...). PS: love your choice in music
@Marcel- I just started using Emacs and learning Elisp so I'm not the on to talk to if you're a beginner. Here's my .emacs though. Most of the stuff is compiled from different sources (heh..best way to learn) except for the custom mode-line (that's all me )
(line-number-mode t)
(setq inhibit-startup-message t)
(setq make-backup-files nil)
(setq auto-save-list-file-name nil)
(setq auto-save-default nil)
(setq search-highlight t)
(define-key global-map [f1] 'term)
(define-key global-map [f2] 'w3m)
(setq dired-listing-switches (quote "-Ahl --group-directories-first"))
(menu-bar-mode 0)
(tool-bar-mode 0)
(scroll-bar-mode 0)
(add-to-list 'load-path (expand-file-name "~/elisp/"))
(add-to-list 'load-path "/usr/share/emacs/site-lisp/w3m")
(load "w3m")
(load "w3m-cookie")
(load "w3m-search")
(setq w3m-use-cookie t
w3m-cookie-file "~/.w3m/cookie"
w3m-cookie-accept-bad-cookies t
w3m-home-page "http://www.google.com"
w3m-use-tab t
w3m-coding-system 'utf-8
w3m-file-coding-system 'utf-8
w3m-input-coding-system 'utf-8
w3m-output-coding-system 'utf-8
w3m-terminal-coding-system 'utf-8)
(defun my-w3m-rename-buffer (url)
"Formats w3m buffer titles based on the current value of w3m-buffer-prefix and w3m-current-title (reducing its length if necessary)."
(let ((name (buffer-name))
(regexp "^\*\\([0-9]+\\).+\*$"))
(if (string-match regexp name)
(setq prefix (string-to-number (match-string 1 name)))
(setq prefix my-w3m-buffer-prefix)))
(if (> (length w3m-current-title) 36)
(setq title (substring w3m-current-title 0 36))
(setq title w3m-current-title))
(rename-buffer (format "*%03.0f. (%s)*" prefix
(url-eat-trailing-space (or title "nil")))))
(add-hook 'dired-load-hook
(function (lambda ()
(load "dired-x"))))
(setq dired-guess-shell-alist-user
'(("\\.jpe?g$" "fb-image.sh ")
("\\.png$" "fb-image.sh ")
("\\.gif$" "fb-image.sh ")
("\\.pdf$" "fb-pdf.sh ")
("\\.mp3$" "mplayer ")
("\\.mpg$" "mplayer -vo fbdev -bpp 32 ")
("\\.avi$" "mplayer -vo fbdev -bpp 32 ")
("\\.wmv$" "mplayer -vo fbdev -bpp 32 ")
("\\.mov$" "mplayer -vo fbdev -bpp 32 ")
)
)
(setq default-mode-line-format
(quote
("- EMACS -"
(:eval (format-time-string "%e %B %Y %H:%M %p"))
" | Status: "
mode-line-modified
(line-number-mode " Line %l ")
" Buffer: "
mode-line-buffer-identification
"[--"
mode-line-modes (which-func-mode ( wich-func-format ))
"]"
)
)
)
(global-font-lock-mode t)
(custom-set-faces
'(buffer-menu-buffer ((t (:foreground "yellow" :weight bold))))
'(font-lock-builtin-face ((((class color) (background dark)) (:foreground "cyan" :bold t)) (((class color)) (:foreground "DarkBlue" :bold t))))
'(font-lock-comment-face ((((class color) (background dark)) (:foreground "LightPink")) (((class color)) (:foreground "FireBrick"))))
'(font-lock-constant-face ((((class color) (background dark)) (:foreground "SpringGreen")) (((class color)) (:foreground "ForestGreen"))))
'(font-lock-doc-string-face ((((class color) (background dark)) (:foreground "SpringGreen")) (((class color)) (:foreground "ForestGreen"))))
'(font-lock-function-name-face ((((class color) (background dark)) (:foreground "wheat3")) (((class color)) (:foreground "DarkBlue"))))
'(font-lock-keyword-face ((((class color) (background dark)) (:foreground "SkyBlue" :bold t)) (((class color)) (:foreground "DarkBlue" :bold t))))
'(font-lock-preprocessor-face ((((class color) (background dark)) (:foreground "SkyBlue")) (((class color)) (:foreground "gray40"))))
'(font-lock-reference-face ((((class color) (background dark)) (:foreground "yellow")) (((class color)) (:foreground "maroon4"))))
'(font-lock-string-face ((((class color) (background dark)) (:foreground "SpringGreen")) (((class color)) (:foreground "ForestGreen"))))
'(font-lock-type-face ((((class color) (background dark)) (:foreground "orange1")) (((class color)) (:foreground "maroon4"))))
'(font-lock-variable-name-face ((((class color) (background dark)) (:foreground "yellow")) (((class color)) (:foreground "SaddleBrown"))))
'(font-lock-warning-name-face ((((class color) (background dark)) (:foreground "DarkOrange")) (((class color)) (:foreground "DarkOrange"))))
'(link ((((class color) (background dark)) (:foreground "blue" :underline t))))
'(minibuffer-prompt ((((background dark)) (:background "black" :foreground "red"))))
'(mode-line ((t (:background "yellow" :foreground "black"))))
'(mode-line-buffer-id ((t (:foreground "blue" :weight bold))))
'(vertical-border ((((type tty)) (:inherit default)))))
(custom-set-variables
)
Last edited by ArchGh0ul (2009-01-08 09:53:52)
Offline
Offline
My ratpoison with updated conky config and improved xterm colors:
http://omploader.org/tMTN1NA
those are some nice colors man! wats ur terminal font btw?
Edit: oh i see it's the gud ol' Monospace font, thanx to ur updated .Xdefaults over at github!
Last edited by Daisuke_Aramaki (2009-01-08 14:16:22)
"You know what I found? Right in the kernel, in the heart of the operating system, I found a developer's comment that said, `Does this belong here?`" -- Simon Lok about Linux kernel in 2005
Reflections on the Strange and the not so Strange
http://skinwalker.wordpress.com
Offline
sirmacik wrote:My ratpoison with updated conky config and improved xterm colors:
http://omploader.org/tMTN1NAthose are some nice colors man! wats ur terminal font btw?
thx, I'm using monospace.
Offline
Really nice Xfce desktop you got there, Breakage.
Do you mind telling us what Xfce and Gtk theme you are using? Also, how do you make your Firefox start page look like that?
Thanks.
The Gtk/Emerald are custom made (Rezlooks engine).
I've uploaded it here, hover mouse over the orange monitor and hit download. http://duttybreakage.deviantart.com/art … -108759170
And heres a link to my startpage in firefox... http://uploading.com/files/OR88BRLY/breakhome.zip.html
Last edited by Breakage (2009-01-08 15:40:31)
Offline
Back to openbox again:
OB-theme: Onyx-black
Background: Physalis by Eri K. from http://wpdb.de.
Progs: conky, urxvt, pypanel, ncmpcpp, volwheel, linuxdc++
Last edited by Xappe (2009-01-08 21:17:03)
vanum est vobis ante lucem surgere
Offline
Back to openbox again:
OB-theme: Onyx-black
Background: Physalis from deviantart
Progs: conky, urxvt, pypanel, ncmpcpp, volwheel, linuxdc++
can u post a link to the wallpaper please? cant find it.
which irssi theme are you using?
Offline
can u post a link to the wallpaper please? cant find it.
which irssi theme are you using?
Hmm, seems I can't find it again either. Maybe I was wrong about the location, I search for backgrounds in many other places now and then but I thought I found this one on DA. Sorry about that.
The irssi theme is called ion_mod.
<edit> I found the wallpaper, I indeed was wrong about the location! It's located at http://wpdb.de, search for Physalis as title and you'll find it. </edit>
Last edited by Xappe (2009-01-08 21:15:41)
vanum est vobis ante lucem surgere
Offline
can u post the conky config please!
Offline
I just started using Emacs and learning Elisp so I'm not the on to talk to if you're a beginner. Here's my .emacs though. Most of the stuff is compiled from different sources (heh..best way to learn) except for the custom mode-line (that's all me )
That's the way my .emacs is written, too. That's why I'm curious to know other people's .emacs's, to learn some handy keybindings I don't know yet. Thanks!
Offline
That's why I'm curious to know other people's .emacs's, to learn some handy keybindings I don't know yet.
There is not much to change, not at first. The way I see it; defaults are very good and not until you learn all/most of them can you start changing on a larger scale, when you see some pitfalls (and every person is different here). With that said, why start with someones bindings, better to learn the defaults. I'm mostly refering to some "complex" combinations, the simple stuff is already ok and available to use in your shell/terminal, GTK apps and so on - I don't see much point in changing those in big numbers.
My modest Keys section
;;-----------------------------------------------------------------------
;; Keys
;; With switched Caps_Lock and Control_L keys system wide.
;;
;; M-x without Alt
(global-set-key "\C-x\C-m" 'execute-extended-command)
(global-set-key "\C-c\C-m" 'execute-extended-command)
;; C-w to backward kill for compatibility (and ease of use)
(global-set-key "\C-w" 'backward-kill-word)
;; ...and then provide alternative for cutting
(global-set-key "\C-x\C-k" 'kill-region)
(global-set-key "\C-c\C-k" 'kill-region)
;; Change C-x C-b behavior (buffer management)
;(global-set-key "\C-x\C-b" 'bs-show)
(global-set-key "\C-x\C-b" 'electric-buffer-list)
;; C-x o alternative, as in Firefox
(global-set-key [(control tab)] 'other-window)
;; No accident scrolling.
(global-set-key (kbd "<Scroll_Lock>") '(lambda () (interactive) nil))
;; Require C-x C-c prompt. So you can't shut it off by accident.
(global-set-key [(control x) (control c)]
(function
(lambda () (interactive)
(cond ((y-or-n-p "Quit? ")
(save-buffers-kill-emacs))))))
;;-----------------------------------------------------------------------
;; Fn bindings
;;
(global-set-key [(f1)] (lambda () (interactive) (manual-entry (current-word))))
;(global-set-key [f2] Org notes - mapped in org section
;(global-set-key [f3] Org work - mapped in org section
;(global-set-key [f4] Org Agenda - mapped in org section
(global-set-key [f5] 'ansi-term)
(global-set-key [f6] 'goto-line)
(global-set-key [f7] 'htmlize-buffer)
;(global-set-key [f8] 'previous-buffer)
;(global-set-key [f9] 'next-buffer)
;(global-set-key [f10] quick menu by default
(global-set-key [f11] 'speedbar)
(global-set-key [f12] 'kill-buffer)
;
;; Rename a few commonly used functions
(defalias 'cr 'comment-region)
(defalias 'ucr 'uncomment-region)
If you want to see the rest of it http://sysphere.org/~anrxc/local/scr/do … emacs.html
To stay on topic, Marcel, ArchGh0ul for coloring Emacs and everything in it take a look at ColorTheme package http://emacswiki.org/cgi-bin/wiki/ColorTheme it's easier to maintain your personal theme or a modification then custom faces, and you cover a lot more ground.
Last edited by anrxc (2009-01-09 00:57:49)
You need to install an RTFM interface.
Offline
tjwoosta wrote:ap_ wrote:http://farm4.static.flickr.com/3119/317 … e2.jpg?v=0
I made a custom Awesome theme to (somewhat) match the GTK2-theme, which is ElegantBrit. I have a bit of fever right now so I might throw up when I get better. Oh well.
nice
would you mind sharing your awesome theme?
thanks
Offline
@anrxg: thanks a lot for those man! Really helped. That electric-buffer-list in particular
here's a bit of update to my .emacs. I got it to display emacs version and system volume level in the mode-line.
I'm sure this looks a bit hackish and probably elisp already has functions like this (don't know for sure as I don't know much Elisp yet) but it does work
(setq default-mode-line-format
(quote
("- EMACS " (:eval (substring
(shell-command-to-string "emacs --version | grep \"GNU Emacs 2\" | awk '{ print $3 }'")
0 -1)
) " -"
(:eval (format-time-string "%e %B %Y %H:%M %p"))
" VOLUME: " (:eval (substring (shell-command-to-string "amixer -c0 get Master | grep \"Front Left: Playback\" | awk '{ print $5 }'") 1 -1)) "%%"
" | Status: "
mode-line-modified
(line-number-mode " Line %l | ")
"Buffer: "
mode-line-buffer-identification
"[--"
mode-line-modes (which-func-mode ( wich-func-format ))
"]"
)
)
)
Offline
New year, new look
http://farm4.static.flickr.com/3330/318 … 5de9_m.jpg
Nice wallpaper. It'd look awesome in my MacbookPro running ArchLinux. Oh, the irony!
I did a bit of detective work and found the wallpaper here: http://www.smashingmagazine.com/2008/12 … uary-2009/
EDIT: Here's the post by the original author, with more resolutions: http://mediumjones.com/wallpaper-of-the … 20#content
Last edited by meqif (2009-01-09 11:49:44)
Ricardo Martins ><>< ricardomartins.cc ><>< GPG key: 0x1308F1B4
Offline
Haxit, can you please share your tiny and clean menu.xml?
Or does anyone else have that small nice looking menu? I'm having problem using my obmenu to do this!
[ logicspot.NET | mempad.org ]
Archlinux x64
Offline
* openbox with a simple self-made theme.
* icon theme: "Black&White" .
* background image: "Darkwood" by zygat3r.
* xfce4-panel / conky
* in tray: glipper-old, volwheel, xxkbd, nm-applet. pidgin
Offline
haxit wrote:Haxit, can you please share your tiny and clean menu.xml?
Or does anyone else have that small nice looking menu? I'm having problem using my obmenu to do this!
I've been trying to get his tint2 config for a while, so I'm not sure he likes to share.:P Anyway, mine is similar, if you'd like to try it.
<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="apps-office-menu" label="Office">
<item label="Writer">
<action name="Execute">
<command>/opt/openoffice/program/swriter</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Evince">
<action name="Execute">
<command>evince</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="GEdit">
<action name="Execute">
<command>gedit</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
</menu>
<menu id="apps-net-menu" label="Internet">
<item label="Firefox">
<action name="Execute">
<command>firefox</command>
<startupnotify>
<enabled>yes</enabled>
<wmclass>Firefox</wmclass>
</startupnotify>
</action>
</item>
<item label="Deluge">
<action name="Execute">
<command>deluge</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Tunderbird">
<action name="Execute">
<command>thunderbird</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
</menu>
<menu id="apps-multimedia-menu" label="Media">
<item label="Sonata">
<action name="Execute">
<command>sonata</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="MPD">
<action name="Execute">
<command>mpd</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="ALSA">
<action name="Execute">
<command>gnome-terminal -e alsamixer</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
</menu>
<menu id="hardware-menu" label="Hardware">
<item label="Asunder">
<action name="Execute">
<command>asunder</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="gtkPod">
<action name="Execute">
<command>gtkpod</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="AcidRip">
<action name="Execute">
<command>acidrip</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Graveman">
<action name="Execute">
<command>graveman</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
</menu>
<menu id="utils-menu" label="Utilities">
<item label="ObConf">
<action name="Execute">
<command>obconf</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Thunar">
<action name="Execute">
<command>thunar</command>
<startupnotify><enabled>yes</enabled></startupnotify>
</action>
</item>
<item label="GTK theme">
<action name="Execute">
<command>gtk-chtheme</command>
<startupnotify><enabled>yes</enabled></startupnotify>
</action>
</item>
<item label="GTerminal">
<action name="Execute">
<command>gnome-terminal</command>
<startupnotify><enabled>yes</enabled></startupnotify>
</action>
</item>
<item label="urxvt">
<action name="Execute">
<command>urxvt</command>
<startupnotify><enabled>yes</enabled></startupnotify>
</action>
</item>
</menu>
<menu id="actions-menu" label="Actions">
<item label="Wallpapers">
<action name="Execute">
<command>nitrogen ~/images/bg</command>
<startupnotify><enabled>yes</enabled></startupnotify>
</action>
</item>
<item label="Reconfigure">
<action name="Reconfigure" />
</item>
<item label="Exit Openbox">
<action name="Exit">
<prompt>yes</prompt>
</action>
</item>
</menu>
<menu id="root-menu" label="Openbox 3">
<separator label="Applications"/>
<menu id="apps-net-menu"/>
<menu id="apps-office-menu"/>
<menu id="apps-multimedia-menu"/>
<menu id="hardware-menu"/>
<separator label="System"/>
<menu id="utils-menu"/>
<menu id="actions-menu"/>
</menu>
</openbox_menu>
Last edited by soupcan (2009-01-09 21:10:38)
Offline