[awesome] New to the tiling world

Hey everybody,
After the surprises and joys of the basic Archlinux install, I first installed KDE4 as DE, because I was quite used to use it.
The I saw that KDE wasn't enough light to change my PC in a formula 1 car, so I searched. After that I installed Openbox, which has a great community here.
But that was a quite common wm.
Then I switched to awesome, and I'm here to fix some problems : when I start an awesome session, I only see my wallpaper, no right menu or bar on top as expected.
Here is my rc.lua :
-- Standard awesome library
require("awful")
require("awful.autofocus")
require("awful.rules")
-- Theme handling library
require("beautiful")
-- Notification library
require("naughty")
--require("vicious")
-- Load Debian menu entries
--require("debian.menu")
-- Custom libraries
require("revelation")
require("shifty")
require("vicious")
require("teardrop")
--if true then return end
-- {{{ Variable definitions
-- Themes define colours, icons, and wallpapers
beautiful.init("/home/alex/.config/awesome/theme/fiesta/theme.lua")
-- This is used later as the default terminal and editor to run.
terminal = "xterm"
editor = os.getenv("EDITOR") or "editor"
editor_cmd = terminal .. " -e " .. editor
-- Default modkey.
-- Usually, Mod4 is the key with a logo between Control and Alt.
-- If you do not like this or do not have such a key,
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
-- However, you can use another modifier like Mod1, but it may interact with others.
modkey = "Mod4"
modkey2 = "Mod3"
-- Table of layouts to cover with awful.layout.inc, order matters.
layouts =
awful.layout.suit.tile,
awful.layout.suit.tile.left,
awful.layout.suit.tile.bottom,
awful.layout.suit.tile.top,
awful.layout.suit.fair,
awful.layout.suit.fair.horizontal,
awful.layout.suit.spiral,
awful.layout.suit.spiral.dwindle,
awful.layout.suit.max,
awful.layout.suit.max.fullscreen,
awful.layout.suit.magnifier,
awful.layout.suit.floating
-- {{{ Tags
shifty.config.tags = {
["xterm"] = { position = 1, init = true, },
["www"] = { position = 2, spawn = browser,},
["inkscape"] = { position = 3, exclusive = true, nopopup = true, spawn = inkscape, },
["irc"] = { position = 4, nopopup = true, spawn = "xterm -T weechat -e weechat-curses" },
["sys"] = { position = 5, exclusive = true, nopopup = true, },
["msg"] = { position = 7, exclusive = true, nopopup = true, },
["view"] = { position = 8, exclusive = true, nopopup = true, },
["mail"] = { position = 10, exclusive = true, nopopup = true, spawn = claws-mail },
["med"] = { position = 11, nopopup = true, },
["[mplayer]"] = { position = 11, nopopup = true, spawn = "xterm -T mplay"},
["dl"] = { position = 12, nopopup = true, spawn = "Transmission"},
shifty.taglist = mytaglist
-- Clients rules
shifty.config.apps = {
{ match = {"Transmission" }, tag = "dl" },
{ match = {"^Download$", "Preferences", "VideoDownloadHelper","Downloads", "Firefox Preferences", }, float = true, intrusive = true },
{ match = {"Firefox","Iceweasel","Vimperator","Shiretoko"} , tag = "www", opacity = 1.0 } ,
{ match = {"WeeChat 0.2.6","weechat-curses","weechat" }, tag = "irc" , },
{ match = {"Inkscape" }, tag = "inkscape", float = true , opacity = 1.0 },
{ match = {"MPlayer","QuodLibet" }, float = true, opacity = 1.0 },
{ match = {"claws-mail" }, tag = "mail", float = true, opacity = 1.0},
{ match = {"med" }, tag = "med" },
{ match = {"ncmpcpp","ncmpc++ ver.0.3.4","med" }, tag = "med", },
{ match = {"Pidgin" }, tag = "msg", },
{ match = {"htop" }, tag = "sys", },
{ match = {"Texmaker" }, tag = "texmaker", float = true, opacity = 1.0 },
{ match = {"lxappearence","Caml graphics" }, float = true, opacity = 1.0 },
{ match = {"gpicview","Epdfview" }, float = true, tag = "view", },
{ match = { "" },
buttons = awful.util.table.join(
awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize),
awful.button({ modkey }, 8, awful.mouse.client.resize))
-- Options par défaut.
shifty.config.defaults = {
layout = awful.layout.suit.tile,
ncol = 1,
mwfact = 0.50,
floatBars=false,
-- {{{ Menu
-- Create a laucher widget and a main menu
myawesomemenu = {
{ "manual", terminal .. " -e man awesome" },
{ "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" },
{ "restart", awesome.restart },
{ "quit", awesome.quit }
mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
-- { "Debian", debian.menu.Debian_menu.Debian },
{ "open terminal", terminal }
mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon),
menu = mymainmenu })
-- {{{ Wibox
-- Create a textclock widget
mytextclock = awful.widget.textclock({ align = "right" })
-- Create a systray
mysystray = widget({ type = "systray" })
-- Create a wibox for each screen and add it
mywibox = {}
mypromptbox = {}
mylayoutbox = {}
mytaglist = {}
mytaglist.buttons = awful.util.table.join(
awful.button({ }, 1, awful.tag.viewonly),
awful.button({ modkey }, 1, awful.client.movetotag),
awful.button({ }, 3, awful.tag.viewtoggle),
awful.button({ modkey }, 3, awful.client.toggletag),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
mytasklist = {}
mytasklist.buttons = awful.util.table.join(
awful.button({ }, 1, function (c)
if not c:isvisible() then
awful.tag.viewonly(c:tags()[1])
end
client.focus = c
c:raise()
end),
awful.button({ }, 3, function ()
if instance then
instance:hide()
instance = nil
else
instance = awful.menu.clients({ width=250 })
end
end),
awful.button({ }, 4, function ()
awful.client.focus.byidx(1)
if client.focus then client.focus:raise() end
end),
awful.button({ }, 5, function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end))
for s = 1, screen.count() do
-- Create a promptbox for each screen
mypromptbox[s] = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright })
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
-- We need one layoutbox per screen.
mylayoutbox[s] = awful.widget.layoutbox(s)
mylayoutbox[s]:buttons(awful.util.table.join(
awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
-- Create a taglist widget
mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.label.all, mytaglist.buttons)
-- Create a tasklist widget
mytasklist[s] = awful.widget.tasklist(function(c)
return awful.widget.tasklist.label.currenttags(c, s)
end, mytasklist.buttons)
--- {{ Section des Widgets
-- Date
datewidget = widget({ type = "textbox" })
vicious.register(datewidget, vicious.widgets.date, "%b %d, %R", 60)
-- Mem Widget
memwidget = widget({ type = "textbox" })
vicious.register(memwidget, vicious.widgets.mem, " $2MB/$3MB", 13)
-- CPU Widget
-- Initialize widget
cpuwidget = widget({ type = "textbox" })
-- Register widget
vicious.register(cpuwidget, vicious.widgets.cpu, "$1%")
-- Widget MPD
--mpdwidget = widget({ type = "textbox", name = "mpdwidget" })
--vicious.register(mpdwidget, vicious.widgets.mpd, " $1", 5, { 30, "mpd" })
-- Net Widget
netwidget = widget({ type = "textbox", name = "netwidget" })
vicious.register(netwidget, vicious.widgets.net, '${wlan0 down_kb} kbps / ${wlan0 up_kb} kbps', 3)
-- FS Widget
fswidget = widget({ type = "textbox", name = "fswidget" })
vicious.register(fswidget, vicious.widgets.fs,
' ${/home used_gb}<span color="'.. beautiful.fg_widget ..'"> /</span> ${/home size_gb} ', 120)
tempwidget = widget({ type = "textbox", name = "tempwidget" })
vicious.register(tempwidget, vicious.widgets.thermal, "$1°C", 20, "thermal_zone2")
-- Icones
mycpuicon = widget({ type = "imagebox", name = "mycpuicon" })
mycpuicon.image = image(beautiful.widget_cpu)
myneticon = widget({ type = "imagebox", name = "myneticon" })
myneticonup = widget({ type = "imagebox", name = "myneticonup" })
myneticonup.image = image(beautiful.widget_netup)
myneticon.image = image(beautiful.widget_net)
myvolicon = widget({ type = "imagebox", name = "myvolicon" })
myvolicon.image = image(beautiful.widget_vol)
mymusicicon = widget({ type = "imagebox", name = "mymusicicon"})
mymusicicon.image = image(beautiful.widget_music)
myspacer = widget({ type = "textbox", name = "myspacer" })
myseparator = widget({ type = "textbox", name = "myseparator" })
myspacer.text = " "
myseparator.text = "|"
mydiskicon = widget({ type = "imagebox", name = "mydiskicon" })
mytimeicon = widget({ type = "imagebox", name = "mytimeicon" })
mytimeicon.image = image(beautiful.widget_date)
mydiskicon.image = image(beautiful.widget_fs)
mymemicon = widget({ type = "imagebox", name = "mymemicon" })
mymemicon.image = image(beautiful.widget_mem)
-- Create the wibox
mywibox[s] = awful.wibox({ position = "top", screen = s })
-- Add widgets to the wibox - order matters
mywibox[s].widgets = {
mylauncher,
mytaglist[s],
mypromptbox[s],
layout = awful.widget.layout.horizontal.rightleft
mylayoutbox[s],
myspacer,
datewidget, mytimeicon,
s == 1 and mysystray or nil,
myspacer,
mpdwidget, mymusicicon,
myspacer,
fswidget, mydiskicon,
myspacer,
myneticonup, netwidget, myneticon,
myspacer,
cpuwidget,
mycpuicon,
myspacer,
memwidget,
mymemicon,
layout = awful.widget.layout.horizontal.rightleft
end
-- {{{ Mouse bindings
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
-- {{{ Key bindings
globalkeys = awful.util.table.join(
awful.key({ modkey, }, "Left", awful.tag.viewprev ),
awful.key({ modkey, }, "Right", awful.tag.viewnext ),
awful.key({ modkey, "Shift" }, "Escape", awful.tag.history.restore),
awful.key({ modkey, }, "j",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, }, "k",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end),
-- awful.key({ modkey, }, "w", function () mymainmenu:show(true) end),
-- Layout manipulationi
-- awful
awful.key({ modkey, }, "Tab", function () awful.client.focus.byidx( 1) end),
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
awful.key({ modkey, "Shift" }, "Tab",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end),
-- Shifty
awful.key({ modkey, "Shift" }, "t", shifty.add),
awful.key({ modkey }, "r", shifty.rename),
awful.key({ modkey }, "w", shifty.del),
awful.key({ modkey, "Shift" }, "Left", shifty.shift_prev ),
awful.key({ modkey, "Shift" }, "Right", shifty.shift_next ),
-- awful.key({ modkey }, "Escape", function() awful.tag.history.restore() end), -- move to prev tag by history
awful.key({ modkey, "Shift" }, "n", shifty.send_prev), -- move client to prev tag
awful.key({ modkey }, "n", shifty.send_next),
-- shifty.config.clientkeys = clientkeys
-- Standard program
-- awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
awful.key({ modkey, "Control" }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", awesome.quit),
awful.key({ modkey },"x", function () teardrop("urxvtc", "top") end),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
awful.key({ modkey }, "Down", revelation.revelation),
-- Keybindings Perso
awful.key({ modkey2}, "Left", function () awful.util.spawn("amixer -q sset Front 2dB-") end),
awful.key({ modkey2}, "Right", function () awful.util.spawn("amixer -q sset Front 2dB+") end),
awful.key({ modkey}, "v", function () awful.util.spawn("apps") end),
--}) end),
-- Prompt
awful.key({ modkey }, "BackSpace", function () mypromptbox[mouse.screen]:run() end)
-- Customs prompts
awful.key({ modkey }, "g", function ()
awful.prompt.run({ prompt = "Xterm" }, promptbox[mouse.screen].widget,
function (name)
exec("xterm -T "..name.."")
end)
end)
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "s", function (c) c.ontop = not c.ontop end ),
awful.key({ modkey, }, "s", function (c) c.sticky = not c.sticky end ),
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey }, "c", function (c) c:kill() end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
-- awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
-- awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end)
-- Compute the maximum number of digit we need, limited to 9
--keynumber = 0
--for s = 1, screen.count() do
-- keynumber = math.min(9, math.max(#tags[s], keynumber));
--end
-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it works on any keyboard layout.
-- This should map on the top row of your keyboard, usually 1 to 9.
clientbuttons = awful.util.table.join(
awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize))
-- Set keys
root.keys(globalkeys)
shifty.config.globalkeys = globalkeys
shifty.config.clientkeys = clientkeys
-- {{{ Signals
-- Signal function to execute when a new client appears.
client.add_signal("manage", function (c, startup)
-- Add a titlebar
-- awful.titlebar.add(c, { modkey = modkey })
-- Enable sloppy focus
c:add_signal("mouse::enter", function(c)
if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
and awful.client.focus.filter(c) then
client.focus = c
end
end)
if not startup then
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- awful.client.setslave(c)
-- Put windows in a smart way, only if they does not set an initial position.
if not c.size_hints.user_position and not c.size_hints.program_position then
awful.placement.no_overlap(c)
awful.placement.no_offscreen(c)
end
end
end)
shifty.init()
client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
client.add_signal("focus", function(c)
c.border_color = beautiful.border_focus
if c.opacity < 1.0 then
c.opacity = beautiful.opacity_focus
end
end)
client.add_signal("unfocus", function(c)
c.border_color = beautiful.border_normal
if c.opacity < 1.0 then
c.opacity = beautiful.opacity_normal
end
end)
I did this from the only tutorial I saw.
It would be nice if you help me fixing the bugs and errors.
Last edited by aleks223 (2010-03-27 13:44:56)

You are using way to many third party libraries at once for us to be able and point the finger at the problem. Which might not even be there, but turns out your personal theme is broken.
Idea: start simple and clean with a default rc.lua, then add one thing at a time, not 10 libraries from some tutorial
Link: all the information you will ever need indexed at one place http://awesome.naquadah.org/wiki/Main_Page
Last edited by anrxc (2010-03-27 14:54:03)

Similar Messages

  • I have a canon hf10 and need to be able to transfer my video from my camera to my computer so I can burn them to dvd is there a step by step process? i'm new 2 the mac world.  I tried downloading imovie 7.1.2 but it said, "An eligible iMovie application

    i have a canon hf10 and need to be able to transfer my video from my camera to my computer so I can burn them to dvd is there a step by step process? i'm new 2 the mac world.  I tried downloading imovie 7.1.2 but it said, "An eligible iMovie application was not found in the location /Applications." can anyone give me step by step instructions? i would hate to call the geek squad!!!LOL

    and what's a firewire port? how do i know if i have one?

  • I'm new to the Mac world. I installed my Epson printer on my IMAC and it worked fine. Then I installed Windows7 through Bootcamp and I think it reconfigured a port and now I get a communication error and it won't print. Any help on how do to fix this?

    Sorry, I'm new to the Mac world. I recently got a new IMAC and installed my Epson CX5800F printer and it worked fine. Then a few weeks later I installed Windows7 through Bootcamp and I think it reconfigured a port or something and now I get a communication error and it won't print. Can anyone help me with this problem, and/or help me get the port back the way it was? Thanks, Barry

    While looking through profile first aid, I came across this that might help explain my problem.
    Searching for profiles...
    Checking 20 profiles...
    /Library/Printers/EPSON/InkjetPrinter2/ICCProfiles/Standard.profiles/Contents/Re sources/Epson IJ Printer.icc
       Tag 'desc': Tag size is not correct.
       Tag 'dmdd': Tag size is not correct.
       Tag 'desc': Description tag has a bad Macintosh string.
       Tag 'dmdd': Description tag has a bad Macintosh string.
       The file is locked. Could not be fixed.
    Repair done - 0 out of 1 profiles fixed.

  • I'm new to the MAC world. I turned my computer on from 'sleep' mode, and a window was up stating that the IOS disk was full; asked me to force quit, then it just froze. It's been 2 hours. Help! I'm worried about losing photos/videos of my children. Thx!

    I'm new to the MAC world. I turned my computer on from 'sleep' mode, and a window was up stating that the IOS disk was full; asked me to force quit, then it just froze. It's been 2 hours. Help! I'm worried about losing photos/videos of my children. Im not sure if there's something special I need to do once I turn it back on; in the meantime, its still on... which I'm afraid the picture on the screen will burn into the screen. Does that happen on iMac's? Thx!

    Try a hard reset. ( holding Power til it restarts)
    Once to your desktop. Click the Apple icon >> About this mac >> More info>> Storage
    Once you see what you have the most of. Try to see what you can delete.
    Open up any folder>>all files>> or buy an external to store more data.
    Once deleting make sure you empty your trash.
    If you are new and its a new computer, you might need to bring it to a store for further assistence.
    Coast Guard Mechanic w/ an Apple Problem

  • I am new to the MAC world but I am very familiar with Lightroom on a PC. This weekend I was weeding out the pics I do not want on my MAC and now I have a ? by all my folders.  How do I recover/get back to where I was 2 days ago?

    I am new to the MAC world but I am very familiar with Lightroom on a PC. This weekend I was weeding out the pics I do not want on my MAC and now I have a ? by all my folders.  How do I recover/get back to where I was 2 days ago?

    These instructions will help you fix the problem: Adobe Lightroom - Find moved or missing files and folders

  • I'm new to the Apple world so bare with me. I have an iPone4S and an iPad2. I want to buy the numbers app but want to know it I buy it can I use the app on both devices? Thx

    I'm new to the Apple world so bare with me. I have an iPhone4S and an iPad2. I want to buy the numbers app but want to know it I buy it can I use the app on both devices? Thx

    mikefromboth ell wrote:
    I'm new to the Apple world so bare with me. I have an iPhone4S and an iPad2. I want to buy the numbers app but want to know it I buy it can I use the app on both devices? Thx
    From the iTunes Store, yes, all your iOS devices running on the same account will qualify.
    Jerry

  • Why is my iMovie shutting down every time I try to share it to iDVD? Help I am new to the Apple world

    Why is my iMovie shutting down everytime I try to share it to iDVD? Help I am new to the Apple world, what am I doing wrong? I have already shared 2 iMovies but this 3rd one is giving me trouble!

    Hi
    First
    • How much free space is there on Your Start-Up Hard Disk ?
    If less than 25Gb - then iDVD will get a hard task as iDVD and Mac OS needs this space for it's pref files (can't be easily addressed to other hard disk)
    Then
    • I do not use "Share to iDVD" - but - "Share to Media Browser" and as Large (not HD or other resolution)
    If still problem - then
    • Material used in iMovie can be the problem maker eg .mp3 audio and .avi, .wmv/a files etc.
    Yours Bengt W

  • There ' is a panel that sayscopy' preparing to duplicate to "desktop". I clicked stop three days and it still trying to stop. Tried to 'force quit' does not show up, looked in activity monitor but i am not sure how it is listed. I am new to the mac world.

    there is panel in the upper right corner of my screen that says 'copy' preparing to duplicate to "desktop". I clicked stop three days ago and it is still trying to stop. Tried to 'force quit' does not show up in finder, looked in activity monitor but i am not sure how it is listed. I am new to the mac world.

    Force quit/Restart the Finder.
    Then for safety...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.

  • New to the manufacturing world?  Here's a resource that might help...

    I've noticed that there are lot of MII implementors who are unfamiliar with the terminology, systems, and processes in the manufacturing world.  I would definitely recommend obtaining this book and reading it from cover to cover!
    http://www.evolvedtechnologist.com/section/books/in-pursuit-perfect-plant-a-business-and-technical-guide
    It is written in a format that presents a manufacturing company from many perspectives : planning, operations, maintenance, and others.  While an expert might find it somewhat redundant, I think that many of the less experienced MII consultants would derive great value from it.

    [APICS|http://www.apics.org/default.htm], although not as popular as they once were, offers some education and certification (ie, CPIM).  One of the courses "Basics of Supply Chain Management", which is available in [book form|http://www.apics.org/APICS/Bookstore/ProductDetail.aspx?CS_ProductID=4186&CS_Category=&CS_Catalog=APICS+Bookstore] is also a good start.

  • I am new to the Apple world and yesterday i bought an APPLE IPAD (4th Gen) .. My Question is "Can we connect a flash drive to the IPAD4 and transfer pdf files to and fro"??

    Hi all,
    I am a newbie to the Apple World and Yesterday I bought an APPLE IPAD (4th Generation).. My primary purpose is to read pdf files on IPAD4.
    I have 3 questions ..
    1. Can we connect a usb flash drive to the ipad4 and read pdf files from it?
    2.  I am using windows since 2000 and accustomed to the file explorer and file management in it. Can I get such kind of environment in IPAD4 ?
    3. Do I have to sync the IPAD too often?
    Regards,
    Manikanth

    Sandisk has recently come out with a device
    http://www.sandisk.com/products/wireless/flash-drive/
    Never used it so I can't comment on whether or not it works well. There are very few devices out there that allow file transfer without going through iTunes or via the internet. IMHO, one real weakness of the iPad, great for consuming data, however not very fully featured when it comes to moving data around, especially if that data doesn't come from iTunes or other online source.
    there is also a device called a WiDrive
    http://www.kingston.com/us/usb/wireless
    that is also a wireless drive for iPads.

  • New to the MAC world - can you suggest a new drive for my G4?

    Hi, I'm a newcomer to the MAC world after using Windows for years. I'd long wanted to make the switch and now my chance has come I'm absolutely delighted.
    At the moment I'm still finding my way around but I already have an idea about upgrade choices and the first is to replace the Hitachi GD-7000 DVD-ROM drive. It appears to be unable to read at least one commercial DVD and has problems with some data CDR/RW's from my collection (the same discs work fine in numerous standalone players and other DVD drives).
    Although I live in a "region 2 zone", I buy lots of region 1 films via Amazon and out of 7 discs tried using VLC only one worked (they all work on my PC's) - is this because of regional coding issues such as RCE or rather the Hitachi's age?
    I realise that ultimately the drive will have to be replaced and I would appreciate it if you could please offer suggestions on suitable drives.
    Thanks,
    Jay
    PowerMac AGP Sawtooth   Mac OS X (10.3.9)   512MB RAM Dell 17" Monitor
    PowerMac AGP Sawtooth   Mac OS X (10.3.9)   512MB RAM Dell 17" Monitor

    Thanks a lot for all the feedback, I've visited the links that you posted for me to check out and tomorrow I'm going to buy the Pioneer DVR-110D. As Malcolm stated, it can be picked up very cheaply (£23!)
    http://www.yoyotech.co.uk/productinfo.php?cPath=10_34&productsid=567&osCsid=5032a3a66dd48b74203e6699d03a3fbd
    Thanks again,
    Jay

  • Brand new to the Mac World and NEED SOME HELP with startup disk issues

    Hello everyone. I am a new Mac user and I purchased my mac on ebay. It's an iMac that came with tiger 10.4.11. I wanted to get a fresh start on the computer, since the person who had it before me did not erase all of his stuff. I didn't know what to do so I got a startup disk/install disk off ebay also. When I go to install it says "software cannot be installed on this computer." Before I bought the software, I had called the apple store and they said it should be fine to buy any install software to put on the computer. If I could get any help it would be appreciated. I had read previous threads that I should hold down c when I start up (didn't work) or that I should select archive or erase and install (I never got these options when I went to install).

    A warm welcome to the Discussions!
    What iMac is it? I only ask as the Retail Tiger CD/DVDs don't work on IntelMacs, only PPC, (G3, G4, G5 Macs).
    Sorry what you were told by the Apple Store, but if it's a Gray CD/DVD then it is Machine specific as Neil stated.
    Sooo, what exact iMac is it, and what does it say on the CD/DVD?

  • Help! I'm new to the Mac World!

    Hi I am looking at buying one of the new 2011 MacBook Air's. Currently I am considering the base model with the 1.6 processor, 2gb ram and 11" screen I usually only use my laptop for powerpoint, word documents, music and webs surfing.
    Will this version of the air allow me to listen to music, whilst using word or powerpoint and surf the web as the sametime. Or will it struggle? 
    Also as I understand it with the new ThunderBolt port it is possible to connect it to my 24" LCD monitor via a DVI cable, is this correct.
    One more thing, will the external hard drive I have been using with my windows notebook work with the MBA?
     Thanks
    JJ 

    Try a hard reset. ( holding Power til it restarts)
    Once to your desktop. Click the Apple icon >> About this mac >> More info>> Storage
    Once you see what you have the most of. Try to see what you can delete.
    Open up any folder>>all files>> or buy an external to store more data.
    Once deleting make sure you empty your trash.
    If you are new and its a new computer, you might need to bring it to a store for further assistence.
    Coast Guard Mechanic w/ an Apple Problem

  • New to the wonderful world of mac and need help

    I am using a powermac G4 quicksilver with a 933 MHz processor 768 mb of ram and I'm running OSX 10.5.7 the problem I am having is that when I go online to play simple flash games they run incredibly slow. I got this mac from a friends father and don't know much about macs, is this a memory problem, a video card problem or a processor problem? I was a Pc user for years so the few things I have tried like putting a different video card probably not compatible in it, new memory probably not compatible in it and i can't find much info on this particular mac, please help!

    Hi! Download MACTRACKER to learn more about various Mac models. The database has good info. You can put 3 -512 mb sticks in it for a total of 1.5gigs of ram fairly easily. 933 mhz isn't real fast and it would probably be faster running Tiger instead of Leo. Also make sure you have 10-20 gigs of free hard drive space because anything less will slow it to a crawl. Tom
    Message was edited by: Thomas Bryant

  • New to the Mac World

    I am tired of just all the problems that windows brings and will be going to the apple store and buying an iMac. I need some help though.
    I know this has probably been answered alot but I have searched and have only really found one thread asking this question.
    Should I buy the iMac 2.0 or the 2.4. I don't play any games on the computer. What I do use it for is photos, watching dvds at times, browsing the net. At times I can be on AIM, the internet and messing with photos all at the same time. If I buy the 2.0 and get 2GB of RAM will this suffice for my needs and still run really smooth. Please any feedback will be great cause I really want to get a mac but just not sure which one to go with.

    I'm going to be really annoying right now. I would say that you're choice isn't really between the 2.0 and the 2.4. I'd say it's between the 2.0 and 2.8.
    Personally I think that for the difference in price, when compared with the 2.4, the 2.8 is worth the extra (more hard disk space, more ram and a faster processor). So the big question is the 2.0 or the 2.8.
    So you've got the bigger hard disk, more ram, 1ghz (roughly) faster processor (in each core that is), the better graphics card, and the bigger and better screen. And that little list, combined with the fact you can't upgrade much later, made me go for the 2.8. I have no regrets and now don't know how I lived without the real estate that the 24" screen has given me (it's quite often full and I'm very grateful for spaces lol).
    Most people will wonder how. Just think of what it's like when you've got itunes, your browser, amsn, streaming the news, email and maybe a word document. Well that's most of my spaces gone on this size screen.
    Basically go with the best spec that you can afford to. By all means don't spend more than you can. But if you don't get the best you can now, then you'll be kicking yourself a year or so down the line.

Maybe you are looking for

  • Regular expressions and capture groups

    Hi everyone :) Is there a way to override the default behaviour of capture groups in regular expressions? More specifically I want to override this: "The captured input associated with a group is always the subsequence that the group most recently ma

  • Photoshop Album S.E. 3.2 un-install - re-install

    Hi, My version of photoshop album starter edition 3.2 is not syncing with my iphone anymore. After it's found all the images a termination window appears and i have to close it down. I believe the best thing i can do is un-install and then re-install

  • Upgrade to a newer veresion questions of Crystal Reports

    We currently have crystal reports 7 and we are having issues linking to databases on a new computer, so I have been thinking about upgrading.  I have someone here telling me it was a big deal last time they upgraded.  My question is what do I have to

  • Slovakia Euro Conversion

    Hello all,   I am gathering information in preparation for Slovakia's transition to the Euro on 1/1/2009. I am not sure what steps need to be taken in our case. Our current setup allows for SKK (Slovakian Koruna) postings under both a USD company cod

  • I updated my 3G iphone today and now my wifi within my home does not work, it stays on 3G.  any suggestions?

    I updated my iphone today, 3G, and I am now unable to get wifi within my home.  It stays on 3G.  any suggestions?