You are not logged in.
Recently installed Arch on my Asus 1000HE that was previously running Ubuntu Jaunty (dual booting Windows XP as well):
nice! How does KDE4 compare with XP in terms of speed?
Offline
Changed from openbox to musca a while ago:
http://xappe.klond.se/dumpar/musca_arch … -thumb.png
Apps: urxvt, irssi, cone, ncmpcpp, conky
Nice shot.
Could you paste your configuration file for cone (without username and pass of cource)
Offline
Nice shot.
Could you paste your configuration file for cone (without username and pass of cource)
The conerc looks quite messy (and i've done the config from within cone). I guess the main thing i've changed is the colors, so here's the color section of the config:
<COLORS fl_accountName="7" fl_accountType="1" fl_folderName="7" fl_folderDirName="0" fl_messageCount="2" md_headerName="2" md_headerContents="2" md_formatWarning="1" wm_headerName="2" perms_user="6" perms_group="5" perms_owner="4" perms_admins="3" perms_other="2" perms_rights="1" misc_promptColor="7" misc_inputField="0" misc_buttonColor="7" misc_menuTitle="7" misc_menuOption="7" misc_titleBar="3" misc_statusBar="3" misc_hotKey="7" misc_hotKeyDescr="7"/>
vanum est vobis ante lucem surgere
Offline
dziq wrote:Nice shot.
Could you paste your configuration file for cone (without username and pass of cource)The conerc looks quite messy (and i've done the config from within cone). I guess the main thing i've changed is the colors, so here's the color section of the config:
<COLORS fl_accountName="7" fl_accountType="1" fl_folderName="7" fl_folderDirName="0" fl_messageCount="2" md_headerName="2" md_headerContents="2" md_formatWarning="1" wm_headerName="2" perms_user="6" perms_group="5" perms_owner="4" perms_admins="3" perms_other="2" perms_rights="1" misc_promptColor="7" misc_inputField="0" misc_buttonColor="7" misc_menuTitle="7" misc_menuOption="7" misc_titleBar="3" misc_statusBar="3" misc_hotKey="7" misc_hotKeyDescr="7"/>
Thank you
Offline
http://th05.deviantart.net/fs47/300W/i/ … obar10.png
Xmonad
Still liking the green color. Not much has changed since last month.
Nice shot
Offline
http://omploader.org/tMXVnaw
switched pypanel to bmpanel and changed colours of conky
otherwise the same as previous.
What bmpanel theme is that?
Offline
Changed fvwm for xmonad (I finally got the config working). Still keeping the greenish feel :-)
Clean
http://i40.tinypic.com/i1lhdy.png
Dirty
http://i44.tinypic.com/2ztio7d.png
Last edited by DawiX (2009-06-17 13:44:55)
xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz
Offline
Dawix: can I have your xmonad.hs and .Xdefaults please? I like the bar font.
urxvtc / wmii / zsh / configs / onebluecat.net
Arch will not hold your hand
Offline
Dfizzle wrote:http://omploader.org/tMXVnaw
switched pypanel to bmpanel and changed colours of conky
otherwise the same as previous.What bmpanel theme is that?
It was supposed to be with this pekwm theme (http://www.box-look.org/content/show.ph … tent=76323) but it wasn't on the package, so I used the images for pekwm theme and made theme from them.
If you want it I uploaded it to http://uploadfile.org/download.php?id=D … 170sNpBblb
Thinkpad L450 | Thinkpad L440 | mITX for life
Offline
Dawix: can I have your xmonad.hs and .Xdefaults please? I like the bar font.
The font that I use is called Snap
.xmobarrc
Config { font = "xft:snap-9"
, bgColor = "#1d1d1d"
, fgColor = "#789e2d"
, position = Top
, lowerOnStart = True
, commands = [ Run Network "wlan0" ["-L","0","-H","32","--normal","#429942","--high","#A36666"] 10
, Run Com "iwgetid" ["-r"] "essid" 50
, Run Com "ifconfig" ["wlan0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'"] "ipaddr" 50
, Run Network "eth0" ["-L","0","-H","32","--normal","#429942","--high","#A36666"] 10
, Run Cpu ["-L","3","-H","50","--normal","#429942","--high","#A36666"] 10
, Run Memory ["-t","Mem: <usedratio>%"] 10
, Run Date "%a %b %_d, %Y - %H:%M:%S" "date" 10
, Run Battery ["-t", "Batt: <left>"] 10
, Run Com "sh" ["/home/david/mpd.sh"] "mpd" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = " %StdinReader% }{<fc=#0b8bff> [</fc>%mpd%<fc=#0b8bff>][</fc>%battery%<fc=#0b8bff>]</fc><fc=#0b8bff>[</fc>%cpu%<fc=#0b8bff>]</fc><fc=#0b8bff>[</fc>%memory%<fc=#0b8bff>]</fc><fc=#0b8bff>[</fc>%wlan0%<fc=#0b8bff>]</fc><fc=#0b8bff></fc><fc=#0b8bff>[</fc>ip: %ipaddr%<fc=#0b8bff>]</fc>--<fc=#0b8bff>[</fc>%date%<fc=#0b8bff>]</fc>"
}
and here is the xmonad.hs - it is a config from wiki by Mr.Elendig with some modifications (however not yet finished fully since I am not a Haskell guru :-) )
{- xmonad.hs
- Little insignificant changes made by:
- DawiX (dawid DOT pech AT gmail DOT com)
- Original author: Øyvind 'Mr.Elendig' Heggstad <mrelendig AT har-ikkje DOT net>
-}
-------------------------------------------------------------------------------
-- Imports --
-- stuff
import XMonad
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import System.Exit
import Graphics.X11.Xlib
import IO (Handle, hPutStrLn)
-- utils
import XMonad.Util.Run (spawnPipe)
-- hooks
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.DynamicLog
-- layouts
import XMonad.Layout.NoBorders
import XMonad.Layout.ResizableTile
-------------------------------------------------------------------------------
-- Main --
main = do
h <- spawnPipe "xmobar"
xmonad $ defaultConfig
{ workspaces = workspaces'
, modMask = modMask'
, borderWidth = borderWidth'
, normalBorderColor = normalBorderColor'
, focusedBorderColor = focusedBorderColor'
, terminal = terminal'
, keys = keys'
, logHook = logHook' h
, layoutHook = layoutHook'
, manageHook = manageHook'
}
-------------------------------------------------------------------------------
-- Hooks --
manageHook' :: ManageHook
manageHook' = (doF W.swapDown) <+> manageHook defaultConfig <+> manageDocks
logHook' :: Handle -> X ()
logHook' h = dynamicLogWithPP $ customPP { ppOutput = hPutStrLn h }
layoutHook' = customLayout
-------------------------------------------------------------------------------
-- Looks --
-- bar
customPP :: PP
customPP = defaultPP { ppCurrent = xmobarColor "#408f00" "" . wrap "[" "]"
, ppTitle = shorten 80
, ppSep = "<fc=#6c9401> | </fc>"
, ppHiddenNoWindows = xmobarColor "#AFAF87" ""
, ppUrgent = xmobarColor "#FFFFAF" "" . wrap "<" ">"
}
-- borders
borderWidth' :: Dimension
borderWidth' = 1
normalBorderColor', focusedBorderColor' :: String
normalBorderColor' = "#333333"
focusedBorderColor' = "#789e2d"
-- workspaces
workspaces' :: [WorkspaceId]
workspaces' = ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
-- layouts
customLayout = avoidStruts $ smartBorders tiled ||| smartBorders (Mirror tiled) ||| noBorders Full
where
tiled = ResizableTall 1 (2/100) (1/2) []
-------------------------------------------------------------------------------
-- Terminal --
terminal' :: String
terminal' = "urxvt"
-------------------------------------------------------------------------------
-- Keys/Button bindings --
-- modmask
modMask' :: KeyMask
modMask' = mod4Mask
-- keys
keys' :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ())
keys' conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
-- launching and killing programs
[ ((modMask, xK_Return), spawn $ XMonad.terminal conf)
, ((modMask, xK_p ), spawn "exe=`dmenu_path | dmenu` && eval \"exec $exe\"")
, ((modMask .|. shiftMask, xK_p ), spawn "gmrun")
, ((modMask .|. shiftMask, xK_c ), kill)
, ((modMask .|. shiftMask, xK_m ), spawn "urxvt -e mutt")
, ((modMask .|. shiftMask, xK_a ), spawn "uzbl -c /home/david/.config/uzbl/configs/config")
, ((modMask .|. shiftMask, xK_i ), spawn "urxvt -e irssi -n DawiX")
-- layouts
, ((modMask, xK_space ), sendMessage NextLayout)
, ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
, ((modMask, xK_b ), sendMessage ToggleStruts)
-- floating layer stuff
, ((modMask, xK_t ), withFocused $ windows . W.sink)
-- refresh
, ((modMask, xK_n ), refresh)
-- focus
, ((modMask, xK_Tab ), windows W.focusDown)
, ((modMask, xK_j ), windows W.focusDown)
, ((modMask, xK_k ), windows W.focusUp)
, ((modMask, xK_m ), windows W.focusMaster)
-- swapping
, ((modMask .|. shiftMask, xK_Return), windows W.swapMaster)
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown )
, ((modMask .|. shiftMask, xK_k ), windows W.swapUp )
-- increase or decrease number of windows in the master area
, ((modMask , xK_comma ), sendMessage (IncMasterN 1))
, ((modMask , xK_period), sendMessage (IncMasterN (-1)))
-- resizing
, ((modMask, xK_h ), sendMessage Shrink)
, ((modMask, xK_l ), sendMessage Expand)
, ((modMask .|. shiftMask, xK_h ), sendMessage MirrorShrink)
, ((modMask .|. shiftMask, xK_l ), sendMessage MirrorExpand)
-- mpd controls
, ((modMask .|. controlMask, xK_v ), spawn "mpc prev")
, ((modMask .|. controlMask, xK_n ), spawn "mpc pause")
, ((modMask .|. controlMask, xK_b ), spawn "mpc play")
, ((modMask .|. controlMask, xK_m ), spawn "mpc next")
, ((modMask .|. controlMask, xK_x ), spawn "mpc seek -2%")
, ((modMask .|. controlMask, xK_comma ), spawn "mpc volume -4")
, ((modMask .|. controlMask, xK_period), spawn "mpc volume +4")
, ((modMask .|. controlMask, xK_c ), spawn "mpc seek +2%")
-- quit, or restart
, ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
, ((modMask , xK_q ), restart "xmonad" True)
]
++
-- mod-[1..9] %! Switch to workspace N
-- mod-shift-[1..9] %! Move client to workspace N
[((m .|. modMask, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_F1 .. xK_F9]
, (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
-------------------------------------------------------------------------------
-- HOW TO DO IT?
--manageHook = composeAll
-- [ className =? "MPlayer" --> doFloat
-- , className =? "Gimp" --> doFloat
-- , className =? "Xpdf" --> doFloat
-- , className =? "pcmanfm" --> doFloat
-- , className =? "Gajim.py" --> doFloat
-- , className =? "Evince" --> doFloat
-- , className =? "Smplayer" --> doFloat
-- , className =? "Sonata" --> doFloat
-- , className =? "Mirage" --> doFloat
-- , className =? "Abiword" --> doFloat
-- , className =? "Gnumeric" --> doFloat
-- , className =? "feh" --> doFloat ]
xmonad @ Arch + zsh
dwm @ freeBSD +zsh
Registered linux user #495331
http://dawix-net.bluefile.cz
Offline
http://omploader.org/tMXVnaw
switched pypanel to bmpanel and changed colours of conky
otherwise the same as previous.
Nice one, whats you bmpanel theme?
archlinux on Macbook Pro 10,1
Offline
http://omploader.org/tMXVnaw
switched pypanel to bmpanel and changed colours of conky
otherwise the same as previous.
Can you upload the wallpaper?
If it ain't broke, broke it then fix it.
Offline
Offline
Dfizzle wrote:http://omploader.org/tMXVnaw
switched pypanel to bmpanel and changed colours of conky
otherwise the same as previous.Nice one, whats you bmpanel theme?
half-custom made, you can get it at http://uploadfile.org/download.php?id=D … 170sNpBblb
Can you upload the wallpaper?
Thinkpad L450 | Thinkpad L440 | mITX for life
Offline
Thanks Dfizzle
Offline
Complete awesomeness! What are you using for your bar(s)? Xmobar, dzen2? Would you mind posting your configs?
#binarii @ irc.binarii.net
Matrix Server: https://matrix.binarii.net
-------------
Allan -> ArchBang is not supported because it is stupid.
Offline
drot wrote:Complete awesomeness! What are you using for your bar(s)? Xmobar, dzen2? Would you mind posting your configs?
Offline
If it ain't broke, broke it then fix it.
If it ain't broke, it doesn't have enough features yet :^)
You need to install an RTFM interface.
Offline
@Dfizzle thanks a lot
@anrxc yeah
If it ain't broke, broke it then fix it.
Offline
Offline
cdwillis wrote:Recently installed Arch on my Asus 1000HE that was previously running Ubuntu Jaunty (dual booting Windows XP as well):
nice! How does KDE4 compare with XP in terms of speed?
I'm not sure if it's Dolphin or the EXT4 filesystem but browsing through files is much quicker than on XP. Everything else is snappier aside from internet browsing. Firefox is slow as hell on linux compared to Windows. I've been using Opera since I'm using KDE now. It's a lot better than Firefox.
Offline
twin wrote:cdwillis wrote:Recently installed Arch on my Asus 1000HE that was previously running Ubuntu Jaunty (dual booting Windows XP as well):
nice! How does KDE4 compare with XP in terms of speed?
I'm not sure if it's Dolphin or the EXT4 filesystem but browsing through files is much quicker than on XP. Everything else is snappier aside from internet browsing. Firefox is slow as hell on linux compared to Windows. I've been using Opera since I'm using KDE now. It's a lot better than Firefox.
In my experience, Firefox is equally slow on both windows and linux...
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline
xfce4/xfwm4 using murrine-svn and hydroxygen icons.
1440x900 views:
http://i480.photobucket.com/albums/rr16 … t-14-7.png
http://i480.photobucket.com/albums/rr16 … -15-13.png
http://i480.photobucket.com/albums/rr16 … -16-11.png
http://i480.photobucket.com/albums/rr16 … t-17-8.png
Last edited by methuselah (2009-06-18 02:20:37)
Offline