Changes to awesome -- xterm windows and stray icon

Hi All,
I recently upgraded from awesome 3.3.4-1 to 3.4.3-2.  There used to be a setting:
-- Honor size hints: if you want to drop the gaps between windows, set this to false.
c.size_hints_honor = false
Doing this made my xterm windows take up the whole screen; without it there was a small margin.  That setting doesn't seem to exist in the latest default rc.lua, and so my xterm windows have a border again (specifically, on the right and the bottom).  Any ideas as to how I make this go away?
Also, I use the Opera web browser, and somehow its little red "O" icon ends up stuck in the display that gives the time, justified left.  Any idea what that is about?
In case it matters, my rc.lua is below (minor changes, mostly key bindings, from the default).
Thanks for any help.
- Hy
-- Standard awesome library
require("awful")
require("awful.autofocus")
require("awful.rules")
-- Theme handling library
require("beautiful")
-- Notification library
require("naughty")
-- {{{ Variable definitions
-- Themes define colours, icons, and wallpapers
-- HY: changed theme
-- beautiful.init("/usr/share/awesome/themes/default/theme.lua")
beautiful.init("/usr/share/awesome/themes/hy/theme.lua")
-- This is used later as the default terminal and editor to run.
terminal = "xterm"
editor = os.getenv("EDITOR") or "nano"
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"
-- Table of layouts to cover with awful.layout.inc, order matters.
layouts =
awful.layout.suit.tile,
awful.layout.suit.tile.bottom,
awful.layout.suit.max,
-- HY: changed these (above)
-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
end
-- {{{ 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 },
{ "open terminal", terminal }
mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon),
menu = mymainmenu })
-- {{{ Wibox
-- Create a textclock widget
-- HY: changed this to add formatting
mytextclock = awful.widget.textclock({ align = "right" }, "%a, %b %d, %I:%M %p")
-- 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)
-- 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.leftright
mylayoutbox[s],
mytextclock,
s == 1 and mysystray or nil,
mytasklist[s],
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, }, "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 manipulation
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, }, "Tab",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end),
-- Standard program
awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
-- HY: removed ctrl (ctrl-r is now reboot)
awful.key({ modkey, }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", awesome.quit),
-- HY: additions
awful.key({ modkey, }, "e", function () awful.util.spawn_with_shell("exec `xterm -e alpine -sort reverse -n 1`") end),
awful.key({ modkey, }, "o", function () awful.util.spawn_with_shell("exec opera") end),
awful.key({ modkey, }, "v", function () awful.util.spawn_with_shell("exec okular") end),
awful.key({ modkey, }, "a", function () awful.util.spawn_with_shell("exec acroread") end),
awful.key({ modkey, "Control" }, "p", function () awful.util.spawn_with_shell("exec `sudo poweroff`") end),
awful.key({ modkey, "Control" }, "r", function () awful.util.spawn_with_shell("exec `sudo reboot`") 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),
-- Prompt
-- HY: changed key from "r" to "F1"
awful.key({ modkey }, "F1", function () mypromptbox[mouse.screen]:run() end),
awful.key({ modkey }, "x",
function ()
awful.prompt.run({ prompt = "Run Lua code: " },
mypromptbox[mouse.screen].widget,
awful.util.eval, nil,
awful.util.getdir("cache") .. "/history_eval")
end)
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, "Shift" }, "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),
-- HY: changed this to not conflict with added "opera" key
-- awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, "Control" }, "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.
for i = 1, keynumber do
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey }, "#" .. i + 9,
function ()
local screen = mouse.screen
if tags[screen][i] then
awful.tag.viewonly(tags[screen][i])
end
end),
awful.key({ modkey, "Control" }, "#" .. i + 9,
function ()
local screen = mouse.screen
if tags[screen][i] then
awful.tag.viewtoggle(tags[screen][i])
end
end),
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()
if client.focus and tags[client.focus.screen][i] then
awful.client.movetotag(tags[client.focus.screen][i])
end
end),
awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
function ()
if client.focus and tags[client.focus.screen][i] then
awful.client.toggletag(tags[client.focus.screen][i])
end
end))
end
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)
-- {{{ Rules
awful.rules.rules = {
-- All clients will match this rule.
{ rule = { },
properties = { border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = true,
keys = clientkeys,
buttons = clientbuttons } },
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "pinentry" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
-- Set Firefox to always map on tags number 2 of screen 1.
-- { rule = { class = "Firefox" },
-- properties = { tag = tags[1][2] } },
-- {{{ 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)
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)

Doing this made my xterm windows take up the whole screen; without it there was a small margin.  That setting doesn't seem to exist in the latest default rc.lua
FAQ how to remove gaps: http://awesome.naquadah.org/wiki/FAQ#Ho … windows.3F
Also, I use the Opera web browser, and somehow its little red "O" icon ends up stuck in the display that gives the time, justified left.  Any idea what that is about?
It doesn't get stuck anywhere, you positioned it there with widget layouts: http://awesome.naquadah.org/wiki/Awesome_3.3_to_3.4

Similar Messages

  • Changed to linux from windows and lost all my touchscreen and sound

    changed to linux from windows and lost all my touchscreen and sound

    dina6370 wrote:
    changed to linux from windows and lost all my touchscreen and sound
    Hi,
    You need some sorts of driver, please try the following forum:
       http://www.linuxquestions.org/
    Good luck
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • TreeByNesting image changes required for Expand,Collapse and Leaf Icons

    Hi
    I am currently working on webdynpro for Java on NW04s SP15.
    I have embedded Tree Element inside Table. I need to change the Expand,Collapse and Leaf Arrows inside Table. I dont find those things inside Theme Editor.
    Could you please suggest how can I change those Icons.
    Thank you
    Regards
    Krishna Kanth.

    Hi WalterLaan,
    Thanks for your replay, I had tried with TreeExpansionListener before posting it, but not with TreeWillExpandListener.
    I have a mouseListener to handle a leaf on single click.
    My problem is now my foldernode has arrowIcon, folder icon, text, all three respond for click action(expand/collapse), since my renderer has all the three in one panel and rendering it
    but i want arrowIcon has to behave separate on single click and folder icon and text has to behave different at the same time.
    I have plan to separate it(arrowIcon in one panel/ another two in another panel) in a renderer, is it will help me?
    Thanks, your post given little light to me.
    I will do more R&D of this.
    More suggestion are welcome.

  • New xterm window and script

    Hi,
    I am trying to get a script executed in a second xterm window. Using the following command:
    xterm -e npg &
    where npg is a bash script. However the window flashes on the screen and disappears within moments. The script does not seem to run.
    If i try
    xterm -e top &
    top is successfully run. Why can't i execute a script in this way? Is there another solution?
    Thanks
    Paul

    If you start xterm by
    xterm -e command &
    then the xterm will quit when the command quits. You can try
    xterm -e 'command; read dummy' &
    then the xterm window will remain untill you hit the return key on the window. Or
    xterm -e 'command; bash' &
    in this case you can use the window normally after the command quits.
    PowerMac G4   Mac OS X (10.4.3)  

  • My home page and facebook games open with a very small window. The print is extremely small. How do I change the size of windows and print?

    Even when I click on full size in my games on Facebook, the windows are not as large as they were in Internet Explorer and the print size is very small. I had changed the size of the print in IE, but don't know how to change it in Firefox. The same is true for my homepage.

    See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • How do I get rid of embedded adobe reader process windows and taskbar icons?

    In the lastest versions of Adobe reader I've come across the issue of finding an adobe task bar icon and a small adobe reader process window for each PDF document that I have open witin an Internet explorer tab. This is driving me crazy. At first I thought it was jut an issue with the machine that I'm on, but I have now seen this happen in multiple computers. Anyone have any ideas on how to keep these from clogging my screen and taskbar?
    I am using Windows 7 Ultimate x64, Internet Explorer version 10.0.9200.16686, and Adobe Reader 11.0.4.

    Group similar buttons on the taskbar
    Taskbar buttons represent open programs on your computer. When you have several programs  open at once, the taskbar might seem crowded with buttons. To help organize the taskbar and save space, you can group similar taskbar buttons so that all of the open files from one program are grouped into one taskbar button, like this:
    Grouped taskbar buttons  
       Open Taskbar and Start Menu Properties by clicking the Start button , clicking Control Panel, clicking Appearance and Personalization, and then clicking Taskbar and Start Menu. 
    Select the Group similar taskbar buttons check box so that it is checked. (To turn off grouping, clear the Group similar taskbar buttons check box.)

  • I believe I've downloaded Firefox, but I get no set up window and your icon isn't on my desktop

    I have a new laptop with Windows 8. I clicked on run to download the latest Firefox, and it completed. but there's no evidence of Firefox anywhere...no desktop icon or dialogue box to set up a homepage

    Download and save the Firefox installer to the desktop and start the installation with a double-click on the desktop icon.
    If the file is missing or corrupted then it is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See:
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Maximize window and disable icons

    Hey everyone I have another question. I have program that creates a window using JFrame. How do you make it so that it is maximized when you run the program and stays maximized?
    Also how do you disable the maximize, minimize and close buttons on the top right hand corner of the window?
    Someone suggested:
    setExtendedState(...);
    setResizabale(...);
    How do I use these? What goes into the brackets?

    Read these:
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Frame.html#setExtendedState(int)
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Frame.html#setResizable(boolean)

  • After copying a file from NTFS to HFS volume, file size changed when viewing in Windows

    Hi guys,
    I have a Mac Air running Mavericks on a HFS partition and Windows 7 on a BOOTCAMP NTFS partition. I have some files that I want to read/write from/to both systems. Since OS X can't write NTFS and Windows can't write HFS either, and I don't want to use any 3rd-party tools/drivers, I have to adopt a "stupid" way: in OS X, I copy those files from NTFS to its HFS partition, make changes, then switch to Windows and sync them back to NTFS.
    The problem is, after I copied a file from NTFS to HFS in OS X, it seemed ok. But when I switched to Windows, the very copied file in HFS partition had its size changed (bigger) although I didn't make any changes to it in OS X yet. This happens to almost every file I copied, text and binary. For those text files, I tried to open it with EditPlus in Windows and EditPlus reports the correct size on the status bar.
    How could this happen?

    I am not sure if this is what your seeing but...
    The same unaltered file on two different volumes might use different amounts of disk space. This is because a 'disk' is divided in to 'blocks' and a block (also historically known as a 'sector') is a certain minimum size. So if disk-1 has a block size of 512 bytes and disk-2 has a block size of 1024 bytes then a file containing just 10 bytes will use up twice as much space on disk-2 as disk-1 even though it is the exact same file.
    Beyond that, Macs can add additional information like Spotlight tags, labels, icons, etc. which make a file bigger. If you are modifying a file then presumably that also implies adding additional content e.g. for a Word document more text and this will make it bigger. Also depending on some programs are configured or designed 'deleting' text may only mark it as deleted and not really delete. This can apply to older versions of Word which has a 'Fast Save' feature, new versions have removed this and do a proper delete.
    You would have to give more details like what you are doing to the document, what kind of document, and what the two sizes are.
    Finally, there is one other potential difference, some systems and manufacturers use 1024 as a unit for measuring file and disk sizes, some use 1000. It will be the same number of bytes in each case but 1000 bytes in one case would exactly equal 1MB, and in the other it would be 0.9765MB.

  • Cursor does not change for pop-up window

    I created a link for a pop-up window. The link does work, but the cursor does not change to a pointy finger, the standard link icon.
    I don't know a lot of javascript, but can figure it out if it's just adding some code. Any help would be appreciated! Here's the code:
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    Thanks in advance.
    Todd

    Hi Todd,
    i got the same problem.(cursor not change for pop-up windows) and because i m not an expert in internal html code i did try several solutions to fix it.
    The easiest (but also even longer if u need to do severals) is to create a button (withs 2 overflight changing pics) with "inserer", "image survolée"
    the "image survolée" can be linked to a pop-up window with the correct effect.  To do so highlight the "expected new link to" and on right side task bar ad a "comportement" named "ouvrir la fenetre du navigateur" and optionally choose the size and windows available function of the pop-up. It works even if u need to proceed first with an overflight changing button.
    The result is longer to obtain and not absolutely perfect. So I guess it s only an help solution for a single mateer. i would be glad to get another solution with a text link rather than using the overflight button system. Technically it should be better, more efficient and faster to proceed with applying an html code that really makes the text appearing as a classic link to a new windows whatever pop up or full size window. Please let me know if u get further answer to fix this problem.
    Many thx and excuse my technical english translation about DreamCs4

  • Reinstalled windows and lost all playlists

    Hi,
    I reinstalled Windows after a virus and all my files were recovered from my backup system just fine. However, when I went to the Apple Store it didn't recognize my computer. I had to log in several times. I purchased some new music, synced my ipod nano and then when I went to my music library all the music was gone except for the newly purchased songs. Same goes for the ipod.
    I panicked.
    I was able to recover all the old songs but lost all my playlists.
    I am not sure if I can recover the playlists. Is that part of the old Library file? What will happen to my new music if I import the old library?
    Thanks,
    S

    dina6370 wrote:
    changed to linux from windows and lost all my touchscreen and sound
    Hi,
    You need some sorts of driver, please try the following forum:
       http://www.linuxquestions.org/
    Good luck
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Change modules pop up window

    How do I remove pop up window 'An error occurred while attempting to change modules' every time I try to load Lightroom 5?

    Hi Todd,
    i got the same problem.(cursor not change for pop-up windows) and because i m not an expert in internal html code i did try several solutions to fix it.
    The easiest (but also even longer if u need to do severals) is to create a button (withs 2 overflight changing pics) with "inserer", "image survolée"
    the "image survolée" can be linked to a pop-up window with the correct effect.  To do so highlight the "expected new link to" and on right side task bar ad a "comportement" named "ouvrir la fenetre du navigateur" and optionally choose the size and windows available function of the pop-up. It works even if u need to proceed first with an overflight changing button.
    The result is longer to obtain and not absolutely perfect. So I guess it s only an help solution for a single mateer. i would be glad to get another solution with a text link rather than using the overflight button system. Technically it should be better, more efficient and faster to proceed with applying an html code that really makes the text appearing as a classic link to a new windows whatever pop up or full size window. Please let me know if u get further answer to fix this problem.
    Many thx and excuse my technical english translation about DreamCs4

  • Firefox start with the previous Windows and Tabs, even the optin I have chosen is the Homepage.

    At start up Firefox does not go to my Homepage

    Cor-el, thank you for your support. Unfortunately the same thing happens whether I close by using the x or by using exit in the Firefox Tab. I go to Options and make sure that "Show my home page is chosen in the "when Firefox starts" option box. Between the time I close and when I bring Firefox back up that option gets changed to "Show my Windows and Tabs from last time"

  • All my hard drives (internal and external) have a small lock in the lower left corner of the icon and I don't have permissions to access. Permissions are set to 'Custom' in the get info window and I can't change them.

    All my hard drives (internal and external) have a small lock in the lower left corner of the icon and I don't have permissions to access. I have 3 user accounts set up and I cannot access any of them.   Permissions are set to 'Custom' in the get info window and I can't change them. Originally I had Snow Leopard installed on one hard drive and 10.5.8 installed on another.   I started to have some problems accessing data between them and so I tried changing the permissions on ONE hard drive partition.   The next thing I know, all my drives are locked (except the ones with the systems on them), the small lock appeared in the lower left corner of the drive icons and I don't have permissions to access any of them.   In the get info window, permissions are set to 'Custom' and I can't change them.

    There is suddenly a lock icon on my external backup drive!
    Custom Permissions

  • With Firefox open an update window came up; I clicked on Restart Later. When I later clicked on Firefox icon, a message brefly appeared "Firefox is damaged and cannot be opened" and the icon changed to a generic one with the "Do Not" slash across it.

    With Firefox open an update window came up; I clicked on Restart Later. When I later clicked on Firefox icon, a message briefly appeared "Firefox is damaged and cannot be opened" and the icon changed to a generic one with the "Do Not" slash across it.

    Many Thanks, Kurt.
    I knew I'd seen the solution you've provided somewhere - either in MacWorld or MacFormat - but couldn't remember the Gatekeeper bit!
    I shall save it somewhere VERY safe now in case this happens again …
    You have made an old man very happy and saved me from worrying that senile decay had suddenly set in. (I was 70 last week so you might understand the situation from that.)
    Best wishes
    OllyanDinah

Maybe you are looking for

  • Unzip Xtra for Mac

    Hi All, I am developing a hybrid application which receives updates in ZIP from the web. Windows is no problem. I am using the bundled Unzip Xtra in Director. The problem is that, the file and folder names in the bundled updates, sometimes are more t

  • Should the loopback alias in /etc/hosts be localhost?

    This was something I ran across recently when installing NTP...for some reason, if I change the loopback alias to my actual machine name, the command <code>ntpq -p</code> would not work...it would reply: Name or service not known.  However, leaving t

  • Error using Window Server Backup on 2012R2 Hyper-V to network share

    Hi I have a Windows 2012 R2 Hyper-V server. It runs a Windows 2012 R2 VM (called server-1). I want to backup the VM to a network location (\\network-1\server-1_backup$). To do this, I installed Windows Server Backup from the command line and configur

  • Highlight and Shadow Values to indicate clipping

    Just curious on how hot a highlight needs to be to have the highlight clipping indicator to turn on (red) any idea what the RGB values need to be? Same question for the shadows. This could be related to the issues I have raised in a couple of threads

  • Installing CE 7.2 on windows 7

    Hi, I am trying to install CE 7.2 on My laptop which is running on Windows 7 64 bit Professional. Is there any way to install it as i am trying to do it number of times and i am getting errors. Please let me know. Thanks Ravi