You are not logged in.

#226 2009-01-08 09:44:22

ArchGh0ul
Member
Registered: 2008-10-23
Posts: 96

Re: January 2009 Screenshots

andre.ramaciotti wrote:

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? tongue

@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 big_smile )...
[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 wink

@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 big_smile )

(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

#227 2009-01-08 13:55:19

sirmacik
Member
From: Poland/Warsaw
Registered: 2008-06-17
Posts: 65
Website

Re: January 2009 Screenshots

My ratpoison with updated conky config and improved xterm colors:
tMTN1NA

Offline

#228 2009-01-08 14:13:30

Daisuke_Aramaki
Member
From: ++49/711
Registered: 2008-10-06
Posts: 651
Website

Re: January 2009 Screenshots

sirmacik wrote:

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

#229 2009-01-08 14:16:26

sirmacik
Member
From: Poland/Warsaw
Registered: 2008-06-17
Posts: 65
Website

Re: January 2009 Screenshots

Daisuke_Aramaki wrote:
sirmacik wrote:

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?

thx, I'm using monospace.

Offline

#230 2009-01-08 14:38:58

Gigamo
Member
Registered: 2008-01-19
Posts: 394

Re: January 2009 Screenshots

Latest awesome-git:

2009-01-08-153446_1440x900_scrot_thumb.png

Offline

#231 2009-01-08 15:36:27

Breakage
Member
From: London
Registered: 2008-02-12
Posts: 198
Website

Re: January 2009 Screenshots

zodmaner wrote:

Really nice Xfce desktop you got there, Breakage. smile

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

#232 2009-01-08 15:45:27

Xappe
Member
Registered: 2008-05-17
Posts: 105

Re: January 2009 Screenshots

Back to openbox again:

archbox_january09-2-thumb.png

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

#233 2009-01-08 19:05:50

ST.x
Member
From: Sydney, Australia
Registered: 2008-01-25
Posts: 363
Website

Re: January 2009 Screenshots

Arch_January___09_II_by_BalanceST.png

Awesome-Git. Now with icons + grayscale big_smile
Configs at Github

Offline

#234 2009-01-08 19:12:39

erebos
Member
Registered: 2008-04-09
Posts: 5

Re: January 2009 Screenshots

Xappe wrote:

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

#235 2009-01-08 20:47:55

jo3
Member
Registered: 2007-08-18
Posts: 112

Re: January 2009 Screenshots

archlinux_mini9_clean.thumbnail.png
archlinux_mini9_dirty.thumbnail.png

Dell Inspiron 910 (mini9)
openbox
trayer

Still installing and tweaking, this little thing is awesome tho, runs way better than my EeePC 900.

Last edited by jo3 (2009-01-08 20:55:33)

Offline

#236 2009-01-08 21:00:08

Xappe
Member
Registered: 2008-05-17
Posts: 105

Re: January 2009 Screenshots

erebos wrote:

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

#237 2009-01-08 23:02:03

Alexdsan
Member
Registered: 2007-07-10
Posts: 28

Re: January 2009 Screenshots

can u post the conky config please!

Offline

#238 2009-01-09 00:01:00

Marcel-
Member
From: Utrecht, NL
Registered: 2006-12-03
Posts: 266

Re: January 2009 Screenshots

ArchGh0ul wrote:

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 big_smile )

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

#239 2009-01-09 00:33:53

anrxc
Member
From: Croatia
Registered: 2008-03-22
Posts: 834
Website

Re: January 2009 Screenshots

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

#240 2009-01-09 01:40:30

tjwoosta
Member
Registered: 2008-12-18
Posts: 453

Re: January 2009 Screenshots

ap_ wrote:
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?

There you go

thanks smile

Offline

#241 2009-01-09 03:09:09

Alexdsan
Member
Registered: 2007-07-10
Posts: 28

Re: January 2009 Screenshots

99996751dd5.th.jpg

Last edited by Alexdsan (2009-01-09 03:12:12)

Offline

#242 2009-01-09 03:10:39

fuscia
Member
Registered: 2008-04-21
Posts: 398

Re: January 2009 Screenshots

openbox, conky, urxvt, cmus, mc, htop.

train.jpg train2.jpg

Offline

#243 2009-01-09 10:02:34

ArchGh0ul
Member
Registered: 2008-10-23
Posts: 96

Re: January 2009 Screenshots

@anrxg: thanks a lot for those man! Really helped. That electric-buffer-list in particular smile

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

#244 2009-01-09 10:42:03

uastasi
Member
From: Salento - Italy
Registered: 2007-11-27
Posts: 247

Re: January 2009 Screenshots

New year, new look
3182168306_44d5705de9_m.jpg


Till the last battle, till the last bottle.
aur - twitter

Offline

#245 2009-01-09 11:45:32

meqif
Member
From: Portugal
Registered: 2006-12-16
Posts: 60
Website

Re: January 2009 Screenshots

Nice wallpaper. It'd look awesome in my MacbookPro running ArchLinux. Oh, the irony!

I did a bit of detective work lol 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

#246 2009-01-09 12:20:12

ftornell
Member
Registered: 2008-08-18
Posts: 277
Website

Re: January 2009 Screenshots

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

#247 2009-01-09 13:16:49

dr/owned
Member
Registered: 2009-01-09
Posts: 136

Re: January 2009 Screenshots

I'll bite.  This is my clean/simple screenshot for Arch....just a pet project right now so I don't feel much like going overboard.

Screenshot.jpg

Last edited by dr/owned (2009-01-09 13:17:53)

Offline

#248 2009-01-09 19:32:35

maniak
Member
Registered: 2009-01-09
Posts: 1

Re: January 2009 Screenshots

50940958nq6.png

* 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

#249 2009-01-09 19:32:59

Execute_Method
Member
From: Tennessee
Registered: 2008-07-26
Posts: 105

Re: January 2009 Screenshots

Finally have OB where I want it, or close to it!!

Please leave feedback if you like.

Clean:
tMTN6dQ

Dirty:
tMTN6cw

Offline

#250 2009-01-09 19:50:21

soupcan
Member
From: ?
Registered: 2008-10-25
Posts: 268

Re: January 2009 Screenshots

ftornell 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

Board footer

Powered by FluxBB