[Solved] Dzen2 , Clock , Date.

Hello.
I was using DWM before and he has an option to in .xinitrc to viev clock on it's bar.
And now I'm using XMonad and I want to see clock on dzen2 bar.
When I type:
date | dzen2
nothing happen's.
And When I type:
date | dmenu
I see normal clock on dmenu.
What should I do to see clock on dzen2?
Last edited by SpeedVin (2009-08-24 07:36:36)

Ashren wrote:
SimpleDate will give you a popup showing the date and time. Is that what you want? SimpleDate is not a layout but an action.
You can integrate a dzen2 statusbar into XMonad showing workspaces and whatnot. Can you post you xmonad.hs here?
Yeah just like in DWM
I can hide/viev bar .
Here is my config:
9 -- Imports
10 import XMonad.Actions.SimpleDate
11 import XMonad hiding (Tall)
12 import XMonad.Hooks.DynamicLog
13 import XMonad.Hooks.UrgencyHook
14 import XMonad.Hooks.ManageDocks
15 import XMonad.Hooks.ManageHelpers
16 import XMonad.Hooks.XPropManage
17 import XMonad.Layout.Tabbed
18 import XMonad.Layout.DecorationMadness
19 import XMonad.Layout.ResizableTile
20 import XMonad.Layout.Reflect
21 import XMonad.Layout.HintedTile
22 import XMonad.Layout.PerWorkspace
23 import XMonad.Layout.NoBorders
24 import XMonad.Layout.ThreeColumns
25 import XMonad.Layout.Grid
26 import XMonad.Layout.IM
27 import XMonad.Actions.WindowGo
28 import XMonad.Util.Run
29 import qualified Data.Map as M
30 import qualified XMonad.StackSet as W
31 import Data.Ratio
32 import System.IO
33 import System.Exit
34
35 import Graphics.X11.Xlib
36 import Graphics.X11.Xlib.Extras
37 import Foreign.C.Types (CLong)
38
39 -- Main
40 main = do
41 d <- spawnPipe myStatusBar
42 spawn myOtherBar
43 xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig
44 { terminal = myTerminal
45 , workspaces = myWorkspaces
46 , borderWidth = myBorderWidth
47 , normalBorderColor = myNormalBorderColor
48 , focusedBorderColor = myFocusedBorderColor
49 , layoutHook = myLayout
50 , manageHook = myManageHook
51 , keys = myKeys
52 }
53
54 -- Options
55 myBorderWidth = 0
56 myTerminal = "urxvtc"
57 myNormalBorderColor = "#303030"
58 myFocusedBorderColor = "#ff0000"
59 myWorkspaces = ["1-irssi", "2-web" ,"3-im", "4", "5", "6", "7", "8", "9-term"]
60
61 -- Menu and Dialog Hook
62 getProp a w = withDisplay $ \dpy -> io $ getWindowProperty32 dpy a w
63
64 checkAtom name value = ask >>= \w -> liftX $ do
65 a <- getAtom name
66 val <- getAtom value
67 mbr <- getProp a w
68 case mbr of
69 Just [r] -> return $ elem (fromIntegral r) [val]
70 _ -> return False
71
72 checkMenu = checkAtom "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_MENU"
73 checkDialog = checkAtom "_NET_WM_WINDOW_TYPE" "_NET_WM_WINDOW_TYPE_DIALOG"
74
75 manageMenus = checkMenu --> doFloat
76 manageDialogs = checkDialog --> doFloat
77
78 -- Window Management
79 myManageHook = composeAll . concat $
80 [ [(className =? m <&&> role =? "roster") --> (ask >>= doF . W.sink) | m <- myIMs ]
81 , [className =? m --> doShift "3-im" | m <- myIMs ]
82 , [className =? w --> doShift "2-web" | w <- myWebs ]
83 , [title =? i --> doShift "1-irssi" | i <- myIRC ]
84 , [className =? f --> doFloat | f <- myFloats ]
85 , [className =? c --> doCenterFloat | c <- myCFloats]
86 ]
87 where
88 role = stringProperty "WM_WINDOW_ROLE"
89 myIMs = ["Gajim.py", "Pidgin"]
90 myWebs = ["Navigator", "Shiretoko", "Firefox"]
91 myIRC = ["irssi", "weechat"]
92 myFloats = ["VirtualBox"]
93 myCFloats = ["Gajim.py", "Pidgin", "Zenity"]
94
95 -- Layouts
96 myLayout = avoidStruts $ onWorkspace "3-im" imLayout $ tiled ||| Mirror tiled ||| hintedTile Tall ||| hintedTile Wide ||| imLayout |||
97 where
98 tiled = ResizableTall nmaster delta ratio []
99 hintedTile = HintedTile nmaster delta ratio TopLeft
100 imLayout = reflectHoriz $ withIM (1%10) (Role "roster") Grid
101 nmaster = 1
102 delta = 3 % 100
103 ratio = 1 % 2
104
105 -- LogHook
106 myLogHook h = dynamicLogWithPP $ defaultPP
107 { ppCurrent = dzenColor "#303030" "#909090" . pad
108 , ppHidden = dzenColor "#909090" "" . pad
109 , ppHiddenNoWindows = dzenColor "#606060" "" . pad
110 , ppLayout = dzenColor "#909090" "" . pad
111 , ppUrgent = wrap (dzenColor "#ff0000" "" "{") (dzenColor "#ff0000" "" "}") . pad
112 , ppTitle = wrap "^fg(#909090)[ " " ]^fg()" . shorten 40
113 , ppWsSep = ""
114 , ppSep = " "
115 , ppOutput = hPutStrLn h
116 }
117 -- Key Bindings
118 myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
119 [ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
120 , ((modMask, xK_o ), date)
121 , ((modMask, xK_p ), spawn "sh /home/user/u.sh") -- %! program launcher
122 , ((modMask .|. shiftMask, xK_w ), spawn "uzbl") -- %! open web client,
123 , ((modMask .|. shiftMask, xK_m ), spawn "urxvtc -e mutt") -- %! open mail client
124 , ((modMask .|. shiftMask, xK_i ), spawn "urxvtc -e irssi") -- %! open IRC client
125 , ((modMask, xK_a ), spawn "msearch all") -- %! Search current playlist via dmenu
126 , ((modMask, xK_o ), date) -- %! Viev Simple date in dzen2.
127 , ((modMask, xK_w ), kill) -- %! Close current window
128 , ((modMask, xK_n ), refresh) -- %! Resize viewed windows to the correct size
129 , ((modMask, xK_space ), sendMessage NextLayout) -- %! Rotate through the available layout algorithms
130 , ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf) -- %! Reset the layouts on the current workspace to defaul
131 , ((modMask, xK_Tab ), windows W.focusDown) -- %! Move focus to the next window
132 , ((modMask .|. shiftMask, xK_Tab ), windows W.focusUp) -- %! Move focus to the previous window
133 , ((modMask, xK_j ), windows W.focusDown) -- %! Move focus to the next window
134 , ((modMask, xK_k ), windows W.focusUp) -- %! Move focus to the previous window
135 , ((modMask, xK_m ), windows W.focusMaster) -- %! Move focus to the master window
136 , ((modMask, xK_Return), windows W.swapMaster) -- %! Swap the focused window with the master window
137 , ((modMask .|. shiftMask, xK_j ), windows W.swapDown) -- %! Swap the focused window with the next window
138 , ((modMask .|. shiftMask, xK_k ), windows W.swapUp) -- %! Swap the focused window with the previous window
139 , ((modMask, xK_h ), sendMessage Shrink) -- %! Shrink the master area
140 , ((modMask, xK_l ), sendMessage Expand) -- %! Expand the master area
141 , ((modMask, xK_u ), sendMessage MirrorShrink) -- %! Shrink the selected pane vertically
142 , ((modMask, xK_i ), sendMessage MirrorExpand) -- %! Expand the selected pane vertically
143 , ((modMask, xK_t ), withFocused $ windows . W.sink) -- %! Push window back into tiling
144 , ((modMask, xK_comma ), sendMessage (IncMasterN 1)) -- %! Increment the number of windows in the master area
145 , ((modMask, xK_period), sendMessage (IncMasterN (-1))) -- %! Decrement the number of windows in the master area
146 --, ((modMask, xK_q ), restart "xmonad" True) -- %! Restart xmonad
147 , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) -- %! Quit xmonad
148 ]
149 ++
150 [ ((m .|. modMask, k), windows $ f i)
151 | (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9] -- %! Switch to workspace N
152 , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)] -- %! Move client to workspace N
153 ]
154
155 ---
Last edited by SpeedVin (2009-08-24 06:05:23)

Similar Messages

  • HowReSet CLOCK & DATE? cant see right 2" Screen Crackd where clock icon is

    brief: Is there another way to RESET CLOCK, because I can't see the CLOCK ICON which is located in upper right corner of the screen, because my screen is Cracked but just on the right two inches.
    Of course, the solution is to replace the screen, but we can Not afford that anytime soon, and would like advice on alternative ways NOW to reset clock & date
    Is there a way to relocate that Clockk iicon to another location on my screen? Or, or...
    I have just a small 9 3/4 inch screen (12" diagonal).
    Dropped & cracked my screen last year. Still works great, that's not the problem, I work arounnd it.
    But I left my computer on overnite without the power cord hooked up.
    I had supposed that it would just go to sleep and not screw me up. But it did.
    It warns that clock needs to be reset or some applications may not work right and may cause troubles.
    So far those troubles are:
    I visit to some of my regular websites where II have registered, & sometimes get warning that it does not recognize me, but luckkily so far they've given me option of hitting continue & I get on my fav sites ok. So, that's not my main, problem, tho I would welcome advice on that if i can't reset my clock, but if ii can't, I'll just repost a separate query later.
    My APPLE 'CALENDAR' applic, that came with this old G4, now opens to 1969, and must click up arroow year by year to get up to 2008. I'll probably post a separate !Q on that too, if nec.
    Maybe I posted this to the wrong topic section and should post it elsewhere? Liike customization?
    Will be VERY GRATEFUL for soolutionn & reward help with pos feedback.
    THANK YOU VERY MUCH.

    Hello thelnukus,
    Kappy has addressed your problem of time and date settings holding due to battery charge etc. but I wanted to address your question concerning placement of the time and date on the screen.
    This can be done simply by choosing "Clock" tab in Date and Time settings in System Preferences and you can customize the clock to display as digital or analog clock on your desktop and this can be move around I believe and transparency can be set to differing levels. Once you get your battery prob worked out try fiddling round with the settings in Date and Time for the Clock.
    I hope that helps some,
    littleshoulders

  • Apple Clock/Date & Time

    I was wondering what the default/auto settings were for the clock/date & time if it should be checked to auto configure to update time & date settings or to leave it unchecked? [im just trying to get my settings back to default settings if anyone knew.
    thanks!

    Thanks all - i was only asking because ive hasd some strange Time& Date issues with Bootcamp and switching back and forth between each OS - i appreciate the help!!
    thanks!

  • N97 clock/date/profile widget

    Hello i have an Nokia N97 and i love it.
    There is only 1 thing i hate about the phone, and that is that you can't remove the clock/date/profile widget when you swipe the screen.
    I'm not the only one who thinks that way.
    It would be nice if Nokia makes this option available.

    It won't happen ! Try SPB shell if you like , but I find it uses too much memory for the phone to cope 
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • [SOLVED] System clock loses minutes at reboot

    For some reason, my system clock (as displayed by date) loses around five minutes every time I reboot. When I use date -s to set the time manually everything's fine until reboot when the clock will lose around five minutes again. Even if I put the clock forward 10 minutes it will lose 5 minutes again after reboot. This happens even if there is no connection to any other clock. No ntpd installed.
    How do I fix this (wthout ntpd)?
    Last edited by itektur (2014-09-20 14:45:52)

    Thank you for the quick reply. I set up systemd-timesyncd and it seems to work fine even after rebooting the system. Problem solved!

  • [Solved] I3 WM: date and time in statusbar?

    Hey, just recently switched from xmonad to I3 and so far I really like it (never got around to learn haskell). The only thing still missing is to display at least the current time and maybe also the date in the statusbar. I at least couldn't find anything in the docs or manpage, so maybe there is no way to do that?
    Last edited by JonathanArcher (2010-04-06 19:37:41)

    What does i3-msg bb do?
    I start the script from xinitrc. Here's mine:
    .xinitrc:
    exec i3 --force-xinerama &
    sh startup.sh
    and the startup script:
    i="1"
    feh --bg-scale /media/sdb1/Documents/wall2copia.png
    while [ $i = 1 ]
    do
    DATE=$(date)
    MEMINFO=$(sed -n -e '3d' -e '1,4p' /proc/meminfo | awk '{printf "%d ", $2 }')
    UPTIME=$(uptime | sed 's/.*://; s/,//g')
    QUALITY=$(sed -e '1,2d' /proc/net/wireless | cut -d" " -f6,7)
    UNAME=$(uname -a | cut -d" " -f1,2,3)
    TEMPS=$(sensors | awk '/C/ { print $3}' | xargs | cut -d" " -f1,2,3,4)
    echo "^fg(white)$DATE^fg(grey) | $UNAME | ^fg(white)^i(mem.xbm)^fg(grey) T/F/C $MEMINFO | ^fg(white)^i(net-wifi.xbm) $QUALITY ^fg(grey)| ^fg(white)^i(cpu.xbm)^fg(grey) $UPTIME | ^fg(white)^i(temp.xbm)^fg(grey) $TEMPS"
    sleep 5
    done | dzen2 -x 150 -y 1005 -w 1050 -bg black -fg grey -fn fixed

  • [SOLVED] dzen2 click areas in slave not working

    Hi,
    I am using dzen2 from official repos with openbox. I do not seem to be able to use clickable areas in slave windows. Moreover, if multiple lines are specified, the title click area does not respond
    This works
    (echo "^ca(1, echo 'TITLE')TITLE^ca()") | dzen2 -p -l 5
    This doesn't
    (echo "^ca(1, echo 'TITLE')TITLE^ca()"; echo -e "one\ntwo\nthree") | dzen2 -p -l 5
    neither does this.
    (echo "TITLE"; echo "^ca(1, echo 'SLAVE')SLAVE^ca()") | dzen2 -p -l 5
    What am I doing wrong?
    Last edited by easysid (2014-02-04 17:14:06)

    Using dzen2-git from AUR solves this issue. Can anyone else please confirm this so that the wiki can be updated?

  • Websites not loading correctly, clock date wrong

    Yesterday I noticed the clock on my computer was 3 hours behind and the date 4 years ahead. Since then any attachments in Gmail come up with a warning as it not being trusted. Also gmail's buttons
    ( delete, spam, move etc) do not load the words. Then facebook does not load correctly it almost looks like html code. I have checked all settings your site has recommended. I do not have any add-ons or adblock, have cleared all cache, cookies history etc. I have all required and suggested items checked but nothing is working. Any other ideas, appreciated

    Try to rename the cert8.db file in the Firefox profile folder to cert8.db.old or delete the cert8.db file to remove intermediate certificates that Firefox has stored.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • [solved]dzen2 configuration issue

    I want split the groups + windows in the right side of the dzen bar and the time and "system tray" to the left.
    my first idea was to have two dzen2 processes running, one align to the right and one to the left, but looking through the wiki I found ^p(_RIGHT) and ^p(_LEFT), great! but it doesn't work.
    here is my code:
    append(){
    txt=$*$text
    while true; do
    append "^p(_LEFT)"\
    `ratpoison -c groups -c windows | sed -e 's\^[0-9][*]\^fg(#FF00FF)\' -e 's\^[0-9][-]\^fg(#A800A8)\' -e 's\^[0-9][+]\^fg(#000054)\'`\
    "^p(_RIGHT)"\
    `date | awk '{print $4}'`
    echo "$txt"
    sleep 1
    done | dzen2
    other question, how could I have the sed output in only one line? the function append just does that, take the break lines out, and how could I use outside variables with sed? it would be easier to change the colors because i didn't found a good color set(any sugestions?)
    Last edited by hack.augusto (2009-02-05 00:37:57)

    The command ^p(_RIGHT) aligns the following text to the right, but in somewhat strange manner:
    the first letter you type after this commmand occurs right of the right edge of the screen, so of course it isn't visible.
    So to get the expected behaviour you have to do following:
    Be W the width of the text you want to have right aligned in pixels, type
    ^p(_RIGHT)^p(-W)textyouwannadisplay
    So ^p(KEYWORD) is to understand as a switch that jumps to the position KEYWORD.
    Hope that will help someone.
    EDIT: This may concern only the actual svn-version
    Last edited by stalphonzo (2011-12-21 08:34:14)

  • [SOLVED] System clock refuses to adopt my timezone

    (Running ArchLinux in VMWare)
    I'm trying to set my system clock to Europe/Lisbon unsuccessfully. I followed these steps:
    Step 1. (rc.conf)
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Lisbon"
    Step 2. (localtime)
    $ rm /etc/localtime
    $ ln -sf /us/share/zoneinfo/Europe/Lisbon /etc/localtime
    Step 3. (reboot)
    Result:
    marfig@archway ~ $ date
    Fri Aug 6 15:27:26 WEST 2010
    marfig@archway ~ $ hwclock
    Fri 06 Aug 2010 03:27:31 PM WEST -0.000409 seconds
    Is there something wrong with /us/share/zoneinfo/Europe/Lisbon?
    Last edited by marfig (2010-08-06 14:49:17)

    marfig wrote:
    No. The time is correct. The timezone isn't. Why is it displaying Western time? (WEST)
    EDIT: gah! I'm so stupid. the simple fact I wrote this prompted me to search 'west timezone' in google. This Western European Time Summer Time. The timezone is correct and I'm a fool. So sorry for this useless thread.
    You should add this to the Try This thread called the "dumbest mistake you made"
    https://bbs.archlinux.org/viewtopic.php?id=11728
    Last edited by Inxsible (2010-08-06 14:51:18)

  • [SOLVED] System clock / Timezone issues

    Hey everyone,
    The issue, as it appears to me, is that arch is assuming that my timezone is +00:00, or UTC. I don't really understand why (it should be +10:00) but here is the output to the frequently requested information for this issue
    $ cat /etc/adjtime
    0.000000 1349592374 0.000000
    1349592374
    UTC
    $ date
    Sun Oct 7 07:42:52 UTC 2012
    $ date --utc
    Sun Oct 7 07:43:18 UTC 2012
    $ hwclock --debug
    hwclock from util-linux 2.22
    Using /dev interface to clock.
    Last drift adjustment done at 1349592374 seconds after 1969
    Last calibration done at 1349592374 seconds after 1969
    Hardware clock is on UTC time
    Assuming hardware clock is kept in UTC time.
    Waiting for clock tick...
    ...got clock tick
    Time read from Hardware Clock: 2012/10/07 07:43:54
    Hw clock time : 2012/10/07 07:43:54 = 1349595834 seconds since 1969
    Sun 07 Oct 2012 07:43:54 UTC -0.969672 seconds
    $ ls -l /etc/localtime
    lrwxrwxrwx 1 root root 37 Oct 7 06:39 /etc/localtime -> /usr/share/zoneinfo/Austalia/Brisbane
    $ hwclock --show --utc
    Sun 07 Oct 2012 07:44:53 UTC -0.687942 seconds
    $ hwclock --show --localtime
    Sun 07 Oct 2012 07:44:57 UTC -0.281630 seconds
    I'm using sytemd, have no rc.conf file, my BIOS clock reported being in UTC. I've been trying to fix this issue for the past few hours (including searching the wiki entries for time, beginner's guide, systemd and many other user's issues related to the clocks/timezones.)
    I hope it's just a case of I missed something crucial somehow. Any help is greatly aprpeciated
    Last edited by hungryb (2012-10-07 08:40:58)

    skunktrader wrote:You didn't need to reinstall tzdata.  The reason for your error was a typo in the symlink
    lrwxrwxrwx 1 root root 37 Oct  7 06:39 /etc/localtime -> /usr/share/zoneinfo/Austalia/Brisbane
    Yeah, that's true, but I'd been remaking symlinks and changing the clock for a while before that iteration, I think it was only that version of the symlink that contained a spelling error.

  • [SOLVED]System clock off

    My system clock is set a day late.  I tried using the "date" command, but I get the following error:
    $ sudo date 06151150
    sudo: timestamp too far in the future: Jun 16 11:37:36 2008
    Here are the pertinent lines from my rc.conf:
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    TIMEZONE="US/Eastern"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    Any help would be great!
    Last edited by crisnoh (2008-06-15 16:31:35)

    Hey, this seems to be a security feature of sudo, so if you can, run it as root instead.
    There is a few solutions to the problem, one of which seems to be the one listed at here, where the solution just seems to be removing a simple file, but I have not tried it myself so dont know for sure.

  • [SOLVED] Wince Exception 'Data Abort' (0x4) for gwes.dll with ROM based file system??

    Hello friends,
    Previously, I was using RAM and ROM based file system and my device was booting correctly. Now, I made only one change related to ROM based file system. When I selected this ROM based file system and try to boot the device.... I got the exception and the
    logs are ---- 
    3321 PID:400002 TID:410002 SetOpp: choosing AM335X_REV_ES2_1
    3321 PID:400002 TID:410002 SetOpp to 3
    3331 PID:400002 TID:590002 OALIoCtlHalInitRTC: Initializing RTC
    3331 PID:400002 TID:590002 RTC_SetTime() = 2006.01.01 12:00:00.000
    3480 PID:400002 TID:930006 ECC TYPE is BCH 8 bit
    3481 PID:400002 TID:930006 8Bit NAND device
    4835 PID:400002 TID:930006 CM3: input file [\windows\firmware.bin] is 9932 bytes long
    4837 PID:400002 TID:930006 CM3: firmware file read ok!
    5037 PID:400002 TID:930006 SDHC: CPU revision 0xffffffff
    5181 PID:400002 TID:930006 UCD_INIT: g_Dc.pUsb0Regs->MODE_R = 0x80
    5185 PID:400002 TID:930006 CAM3xxOTG::Init DEVCTL 80
    5391 PID:400002 TID:930006 UsbPowerModule: 2 DEVCTL = 0x00000081
    5664 PID:400002 TID:2df001e Exception 'Data Abort' (0x4): Thread-Id=02df001e(pth=9e451cc8), Proc-Id=00400002(pprc=8219f5e0) 'NK.EXE', VM-active=04510006(pprc=9e4658c0) 'GweUser.exe'
    5664 PID:400002 TID:2df001e PC=efd918b8(gwes.dll+0x000118b8) RA=efd918b8(gwes.dll+0x000118b8) SP=ab5ff960, BVA=00000024
    1529482 PID:400002 TID:2df001e Exception 'Data Abort' (0x4): Thread-Id=02df001e(pth=9e451cc8), Proc-Id=00400002(pprc=8219f5e0) 'NK.EXE', VM-active=04510006(pprc=9e4658c0) 'GweUser.exe'
    1529483 PID:400002 TID:2df001e PC=efd918b8(gwes.dll+0x000118b8) RA=efd918b8(gwes.dll+0x000118b8) SP=ab5ff960, BVA=00000024
    PB Debugger The Kernel Debugger has been disconnected successfully.
    After giving calibration inputs, I go the above exception and the LCD screen becomes white only... But i only changed the file system from RAM & ROM based file system to ROM based file system....
    As, I am trying to find the solution but up to now I am unable to find the solution. I request to provide the appropriate inputs???? 

    Hello Friends,
    After using the filter as an environment variable in the .bat file still the issue is not solved.. I can only see the Windows Embedded Compact 7 logo without any icon and toolbar??????
    My platform .reg files entries are as -
    ;; Load Device Manager to start storage driver
    #if (defined SYSGEN_FSROMONLY)
    [HKEY_LOCAL_MACHINE\init\BootVars]
    "Start DevMgr"=dword:1
    ;; Block driver settings to load at boot phase
    [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\]
    "Profile"="FlashDisk"
    "Flags"=dword:1000
    ;; How to use storage space
    [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\FlashDisk]
    "AutoMount"=dword:1
    "AutoPart"=dword:1
    "AutoFormat"=dword:1
    "PartitionDriver"="mspart.dll"
    "MountAsBootable"=dword:1
    "Name"="NANDFLASH"
    "Folder"="NANDFLASH"
    "DefaultFileSystem"="FATFS"
    ;; Making storage device as a root
    [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\FlashDisk\FATFS]
    "MountAsRoot"=dword:1
    "MountAsBootable"=dword:1
    "MountPermanent"=dword:1
    "AutoPart"=dword:1
    "AutoFormat"=dword:1
    [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\FlashDisk\FATFS\Filters\fsreplxfilt]
    "dll"="fsreplxfilt.dll"
    "order"=dword:1 ; must be loaded before other filters
    #endif
    ;===============================================================================
    and .bat file entries are as -
    set SYSGEN_FSREPLXFILT=1
    set PRJ_ENABLE_FSEXTREPL=1
    set PRJ_ENABLE_FSMOUNTASROOT=1
    Where I am missing some thing please tell me???????

  • [SOLVED] Dzen2 artifacts since last update

    Hello,
    I'm having a problem with Dzen2: since the last update to version 0.8.5-4 it shows artifacts (or whatever else it is; not looking good at any rate)
    I have two dzens: one is always on showing unread mail, battery, date and time:
    (notice vertical lines after "5" and "twenty";
    the other I can turn on and off and it shows various diagnostics:
    (notice "black holes", that's one of the versions of the error),
    (black and white rectangles, that's another one).
    I haven't changed anything in the feeding scripts since long before the las update.
    This is the small one (the first screenshot): http://pokazywarka.pl/dl3tnj/;
    this is the big one (the second and third screenshots): http://pokazywarka.pl/se2h2x-2/.
    Could anyone help me, please?
    Last edited by caminoix (2010-01-27 09:58:06)

    The issue comes up on my computer too but enabling the XFT option in the dzen2's configuration fixes the problem. The package linked does this by default.
    But I'm interested in this bug because I don't think this is dzen2's bug. It worked very nicely until the update of X.
    In fact I can reproduce this with the stock dzen2 from the community repo:
    dzen2 -bg '#404000' -fg '#777777' -h 16 -sa c -e '' -ta l -fn '-*-dejavu sans mono-medium-r-normal-*-11-*-*-*-*-*-*-*' -tw 1350
    and the first line of the input:
    aaaaaaaaaaaaaaaaaaaaa aaaaaa tal aaaaaaaaa
    the garbage begins after the "tal" part until the next "aaa..." section. Interestingly changing the "tal" string makes the problem go away.
    I'm using an ATI card with the open source drivers, not sure it matters though.
    Anyways, as I've said using Xft makes the problem go away, but still it shouldn't work this way.

  • Clock,date and time acting up

    When i booted up this morning i got a message that said
    your computers clock is set to a date before march 24th 2001. This may cause some applications to behave erratically.
    please use the date and time prefrences panel to set the clock manually.
    the clock is set to the correct time. Some apps are freezeing.
    what do i do.

    Mention "clock reset to wrong year" to a room of Mac users, and you'll get a room of people telling you to replace the PRAM battery. Do you have your Mac set to auto-sync with a time server in System Preferences> Date&Time? That could mask a failing PRAM battery once startup is complete. The G4 mirrored drive door models take a 3.6v 1/2AA lithium PRAM battery (see Macintosh Family: Batteries and Part Numbers, Part 2); that battery is commonly a stock item at places like RadioShack for around US$11 retail. You can find it cheaper online (e.g., here), although after adding s/h you'll likely be close to the retail price again. The owners manual for your Mac will show how to replace the PRAM battery.
    p.s. I see Allan types faster than I!

Maybe you are looking for

  • PDF Form Takes More Time To Open  when using designer 7.1.3129.1.296948 + Reader 8 above

    Hi All, When i am developing the adobe interactive form Using designer 7.1.3129.1.296948,After that I converted to PDF. When I am opening the PDF form its takes more time(Using reader version 8.1.2). How to resolve This problem ? Regards, Boopathi M

  • Error in report "8.2 ORacle Essbase- Source Blending Page"

    Hi, I got an error in the report in "8.2 ORacle Essbase- Source Blending Page" after i deployed sample core and aslo configured with hyperion Essbase cubes related to this dashboard page. The main issue i was struggling is i have 2 more working insta

  • Select destination

    Currently I have iPhoto 5.0; therefore, I downloaded 6.0.5; however, during the update I got the following message: "You cannot install iPhoto Update 6.0.5 on this volume. An eligible iPhoto application was not found in the location / Applications/iP

  • CS Photoshop/Illustrator, User interface-Brightness

    It is possible to adjust User Interface-Brightness in Preferences in Illustrator, but I can't find any in Photoshop. Anyone can help me?

  • Asset Library Video Customisation

    Hi, I have an asset library created on our Office 365 SharePoint Tenancy.  We will be using this library for Video files.  I have updated the library to have additional columns to reflect additional information required, for example our reference num