Awesome WM text pointer disappears on tag switch

Hi,
I have the following problem. On one tag I keep Atom with some file open. If I use the mouse to click on some other tag and go back to Atom everything is ok. If I use modkey+<num> to switch to another tag and back while the mouse is over the task bar or over the widgets everything is ok. But when I switch the tag again with the keyboard shortcut and go back to Atom while the mouse is somewhere over the clients the text pointer in Atom disappears and I need to click somewhere in the text to make it reappear. And it's really annoying when coding to reach for the mouse every time you change to some other tag and back.
Here's my rc.lua:
Dremora Awesome WM config 2.0
github.com/copycat-killer
-- {{{ Required libraries
local gears = require("gears")
local awful = require("awful")
awful.rules = require("awful.rules")
require("awful.autofocus")
local wibox = require("wibox")
local beautiful = require("beautiful")
local naughty = require("naughty")
local drop = require("scratchdrop")
local lain = require("lain")
-- {{{ Error handling
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
end
do
local in_error = false
awesome.connect_signal("debug::error", function (err)
if in_error then return end
in_error = true
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, an error happened!",
text = err })
in_error = false
end)
end
-- {{{ Autostart applications
function run_once(cmd)
findme = cmd
firstspace = cmd:find(" ")
if firstspace then
findme = cmd:sub(0, firstspace-1)
end
awful.util.spawn_with_shell("pgrep -u $USER -x " .. findme .. " > /dev/null || (" .. cmd .. ")")
end
run_once("urxvtd")
run_once("unclutter")
-- {{{ Variable definitions
-- localization
--os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/dremora/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "xfce4-terminal" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "google-chrome"
browser2 = "iron"
gui_editor = "atom"
-- graphics = "gimp"
local layouts = {
awful.layout.suit.floating,
lain.layout.uselesstile,
awful.layout.suit.fair,
lain.layout.uselesstile.left,
lain.layout.uselesstile.top
-- {{{ Tags
tags = {
names = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" },
layout = { layouts[1], layouts[3], layouts[2], layouts[1], layouts[5] }
for s = 1, screen.count() do
tags[s] = awful.tag(tags.names, s, tags.layout)
end
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
-- {{{ Menu
mymainmenu = awful.menu.new({ items = require("menugen").build_menu(),
theme = { height = 16, width = 130 }})
-- {{{ Wibox
markup = lain.util.markup
white = beautiful.fg_focus
gray = "#858585"
-- Textclock
mytextclock = awful.widget.textclock(markup(gray, " %a")
.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M "))
-- Calendar
lain.widgets.calendar:attach(mytextclock, { fg = white })
--[[ Mail IMAP check
-- commented because it needs to be set before use
mailwidget = lain.widgets.imap({
timeout = 180,
server = "server",
mail = "mail",
password = "keyring get mail",
settings = function()
mail_notification_preset.fg = white
mail = ""
count = ""
if mailcount > 0 then
mail = "Mail "
count = mailcount .. " "
end
widget:set_markup(markup(gray, mail) .. markup(white, count))
end
-- MPD
mpdwidget = lain.widgets.mpd({
settings = function()
mpd_notification_preset.fg = white
artist = mpd_now.artist .. " "
title = mpd_now.title .. " "
file = mpd_now.file .. " "
if mpd_now.state == "pause" then
file = "mpd paused"
elseif mpd_now.state == "stop" then
file = ""
end
widget:set_markup(markup(gray, file))
end
-- /home fs
fshome = lain.widgets.fs({
partition = "/home",
settings = function()
fs_notification_preset.fg = white
fs_header = ""
fs_p = ""
if fs_now.used >= 90 then
fs_header = " Hdd "
fs_p = fs_now.used
end
widget:set_markup(markup(gray, fs_header) .. markup(white, fs_p))
end
-- Battery
batwidget = lain.widgets.bat({
settings = function()
bat_header = " Bat "
bat_p = bat_now.perc .. " "
if bat_now.status == "Not present" then
bat_header = ""
bat_p = ""
end
widget:set_markup(markup(gray, bat_header) .. markup(white, bat_p))
end
-- ALSA volume
volumewidget = lain.widgets.alsa({
settings = function()
header = " Vol "
vlevel = volume_now.level
if volume_now.status == "off" then
vlevel = vlevel .. "M "
else
vlevel = vlevel .. " "
end
widget:set_markup(markup(gray, header) .. markup(white, vlevel))
end
-- Weather
yawn = lain.widgets.yawn(123456,
settings = function()
yawn_notification_preset.fg = white
end
-- Separators
first = wibox.widget.textbox('<span font="Tamsyn 4"> </span>')
arrl_pre = wibox.widget.imagebox()
arrl_pre:set_image(beautiful.arrl_lr_pre)
arrl_post = wibox.widget.imagebox()
arrl_post:set_image(beautiful.arrl_lr_post)
-- 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, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
mytasklist = {}
mytasklist.buttons = awful.util.table.join(
awful.button({ }, 1, function (c)
if c == client.focus then
c.minimized = true
else
-- Without this, the following
-- :isvisible() makes no sense
c.minimized = false
if not c:isvisible() then
awful.tag.viewonly(c:tags()[1])
end
-- This will also un-minimize
-- the client, if needed
client.focus = c
c:raise()
end
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()
-- 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.filter.all, mytaglist.buttons)
-- Create a tasklist widget
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
-- Create the wibox
mywibox[s] = awful.wibox({ position = "top", screen = s, height = 18 })
-- Widgets that are aligned to the left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(first)
left_layout:add(mytaglist[s])
left_layout:add(arrl_pre)
left_layout:add(mylayoutbox[s])
left_layout:add(arrl_post)
left_layout:add(mypromptbox[s])
left_layout:add(first)
-- Widgets that are aligned to the right
local right_layout = wibox.layout.fixed.horizontal()
if s == 1 then right_layout:add(wibox.widget.systray()) end
right_layout:add(first)
right_layout:add(mpdwidget)
--right_layout:add(mailwidget)
right_layout:add(fshome)
right_layout:add(batwidget)
right_layout:add(volumewidget)
right_layout:add(mytextclock)
-- Now bring it all together (with the tasklist in the middle)
local layout = wibox.layout.align.horizontal()
layout:set_left(left_layout)
layout:set_middle(mytasklist[s])
layout:set_right(right_layout)
mywibox[s]:set_widget(layout)
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(
-- Take a screenshot
-- https://github.com/copycat-killer/dots/blob/master/bin/screenshot
awful.key({ altkey }, "p", function() os.execute("screenshot") end),
-- Tag browsing
awful.key({ modkey }, "Left", awful.tag.viewprev ),
awful.key({ modkey }, "Right", awful.tag.viewnext ),
awful.key({ modkey }, "Escape", awful.tag.history.restore),
-- Non-empty tag browsing
awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end),
awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end),
-- Default client focus
awful.key({ altkey }, "k",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end),
awful.key({ altkey }, "j",
function ()
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end),
-- By direction client focus
awful.key({ modkey }, "j",
function()
awful.client.focus.bydirection("down")
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "k",
function()
awful.client.focus.bydirection("up")
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "h",
function()
awful.client.focus.bydirection("left")
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "l",
function()
awful.client.focus.bydirection("right")
if client.focus then client.focus:raise() end
end),
-- Show Menu
-- awful.key({ modkey }, "w",
-- function ()
-- mymainmenu:show({ keygrabber = true })
-- end),
-- Show/Hide Wibox
-- awful.key({ modkey }, "b", function ()
-- mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
-- end),
-- On the fly useless gaps change
awful.key({ altkey, "Control" }, "=", function () lain.util.useless_gaps_resize(1) end),
awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) 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),
awful.key({ altkey, "Shift" }, "l", function () awful.tag.incmwfact( 0.05) end),
awful.key({ altkey, "Shift" }, "h", function () awful.tag.incmwfact(-0.05) end),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
awful.key({ modkey, "Control" }, "h", 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, "Control" }, "n", awful.client.restore),
-- 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),
-- Dropdown terminal
awful.key({ modkey, }, "z", function () drop(terminal) end),
-- Widgets popups
awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end),
awful.key({ altkey, }, "h", function () fshome.show(7) end),
awful.key({ altkey, }, "w", function () yawn.show(7) end),
-- ALSA volume control
awful.key({ }, "XF86AudioRaiseVolume",
function ()
awful.util.spawn(string.format("amixer -c %s set %s 1+", volumewidget.card, volumewidget.channel))
volumewidget.update()
end),
awful.key({ }, "XF86AudioLowerVolume",
function ()
awful.util.spawn(string.format("amixer -c %s set %s 1-", volumewidget.card, volumewidget.channel))
volumewidget.update()
end),
awful.key({ }, "XF86AudioMute",
function ()
awful.util.spawn(string.format("amixer -c %s set %s toggle", volumewidget.card, volumewidget.channel))
--awful.util.spawn(string.format("amixer set %s toggle", volumewidget.channel))
volumewidget.update()
end),
awful.key({ altkey, "Control" }, "m",
function ()
awful.util.spawn(string.format("amixer -c %s set %s 100%%", volumewidget.card, volumewidget.channel))
volumewidget.update()
end),
-- MPD control
awful.key({ }, "XF86AudioPlay",
function ()
awful.util.spawn_with_shell("mpc toggle || ncmpc toggle || pms toggle")
mpdwidget.update()
end),
awful.key({ }, "XF86AudioStop",
function ()
awful.util.spawn_with_shell("mpc stop || ncmpc stop || pms stop")
mpdwidget.update()
end),
awful.key({ }, "XF86AudioPrev",
function ()
awful.util.spawn_with_shell("mpc prev || ncmpc prev || pms prev")
mpdwidget.update()
end),
awful.key({ }, "XF86AudioNext",
function ()
awful.util.spawn_with_shell("mpc next || ncmpc next || pms next")
mpdwidget.update()
end),
-- Copy to clipboard
awful.key({ modkey }, "c", function () os.execute("xsel -p -o | xsel -i -b") end),
-- User programs
awful.key({ modkey }, "w", function () awful.util.spawn(browser) end),
awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end),
awful.key({ modkey }, "g", function () awful.util.spawn(graphics) end),
awful.key({ modkey }, "e", function () awful.util.spawn("thunar") end),
-- Prompt
awful.key({ modkey }, "r", 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),
-- {{ Configures Keymap }} --
awful.key({ "Control", "Shift" }, "k",
function()
awful.util.spawn("xmodmap /home/peio/.Xmodmap_Internal")
naughty.notify({ timeout = 8, text = "Keyboard configured for internal." })
end),
awful.key({ "Control", "Shift" }, "l",
function()
awful.util.spawn("xmodmap /home/peio/.Xmodmap_External")
naughty.notify({ timeout = 8, text = "Keyboard configured for external." })
end)
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, }, "q", 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, }, "t", function (c) c.ontop = not c.ontop end),
awful.key({ modkey, }, "n",
function (c)
-- The client currently has the input focus, so it cannot be
-- minimized, since minimized clients can't have the focus.
c.minimized = true
end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
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, 9 do
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey }, "#" .. i + 9,
function ()
local screen = mouse.screen
local tag = awful.tag.gettags(screen)[i]
if tag then
awful.tag.viewonly(tag)
end
end),
awful.key({ modkey, "Control" }, "#" .. i + 9,
function ()
local screen = mouse.screen
local tag = awful.tag.gettags(screen)[i]
if tag then
awful.tag.viewtoggle(tag)
end
end),
awful.key({ modkey, "Shift" }, "#" .. i + 9,
function ()
local tag = awful.tag.gettags(client.focus.screen)[i]
if client.focus and tag then
awful.client.movetotag(tag)
end
end),
awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
function ()
local tag = awful.tag.gettags(client.focus.screen)[i]
if client.focus and tag then
awful.client.toggletag(tag)
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 = awful.client.focus.filter,
keys = clientkeys,
buttons = clientbuttons,
size_hints_honor = false } },
{ rule = { class = "URxvt" },
properties = { opacity = 0.99 } },
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "Dwb" },
properties = { tag = tags[1][1] } },
{ rule = { class = "Iron" },
properties = { tag = tags[1][1] } },
{ rule = { instance = "plugin-container" },
properties = { tag = tags[1][1] } },
{ rule = { class = "Gimp" },
properties = { tag = tags[1][4] } },
{ rule = { class = "Gimp", role = "gimp-image-window" },
properties = { maximized_horizontal = true,
maximized_vertical = true } },
-- {{{ Signals
-- Signal function to execute when a new client appears.
client.connect_signal("manage", function (c, startup)
-- Enable sloppy focus
c:connect_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 and 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
local titlebars_enabled = false
if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
-- buttons for the titlebar
local buttons = awful.util.table.join(
awful.button({ }, 1, function()
client.focus = c
c:raise()
awful.mouse.client.move(c)
end),
awful.button({ }, 3, function()
client.focus = c
c:raise()
awful.mouse.client.resize(c)
end)
-- Title in the middle
local middle_layout = wibox.layout.flex.horizontal()
local title = awful.titlebar.widget.titlewidget(c)
title:set_align("center")
middle_layout:add(title)
middle_layout:buttons(buttons)
local layout = wibox.layout.align.horizontal()
layout:set_middle(middle_layout)
awful.titlebar(c,{size=18}):set_widget(layout)
end
end)
-- No border for maximized clients
client.connect_signal("focus",
function(c)
if c.maximized_horizontal == true and c.maximized_vertical == true then
c.border_color = beautiful.border_normal
else
c.border_color = beautiful.border_focus
end
end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- {{{ Arrange signal handler
for s = 1, screen.count() do screen[s]:connect_signal("arrange", function ()
local clients = awful.client.visible(s)
local layout = awful.layout.getname(awful.layout.get(s))
if #clients > 0 then -- Fine grained borders and floaters control
for _, c in pairs(clients) do -- Floaters always have borders
if awful.client.floating.get(c) or layout == "floating" then
c.border_width = beautiful.border_width
-- No borders with only one visible client
elseif #clients == 1 or layout == "max" then
clients[1].border_width = 0
else
c.border_width = beautiful.border_width
end
end
end
end)
end
function run_once(cmd)
findme = cmd
firstspace = cmd:find(" ")
if firstspace then
findme = cmd:sub(0, firstspace-1)
end
awful.util.spawn_with_shell("pgrep -u $USER -x " .. findme .. " > /dev/null || (" .. cmd .. ")")
end
run_once("nm-applet")
If someone can help me I'll be really thankful.
Best regards,
Georgi

This is weird behavior that I don't experience with Awesome and Atom. Does this happen only with Atom, or with anything? One aspect of your rc.lua that might cause something like this is the sloppy focusing, this bit here:
-- Enable sloppy focus
c:connect_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)
Try disabling that, by commenting it out entirely, and see if the problem persists.
If it only happens with Atom, then maybe Atom conflicts for some reason with this sloppy focusing.

Similar Messages

  • Can not enable tag-switching on the router

    Good day for all,
    i have 7206 g1 router with 7200 Software (C7200-JK9S-M), Version 12.3(4)T4 (enterprise)
    and i can not enable mpls.
    Router(config)#int gigabitEthernet 0/2.102
    Router(config-subif)#mpls ip
    % Tag switching not supported on interface GigabitEthernet0/2.102
    this error on all interfaces
    what is the problem? (cef enable)
    Thank You

    I have 2 identical 7206VXR, same IOS, same PAs
    And one of em allows tag-switching on FasteEthernet 0/0.30 (dot1q), other - doesnt :(
    --- rtr 1 ----
    Cisco Internetwork Operating System Software
    IOS (tm) 7200 Software (C7200-P-M), Version 12.2(18)S5, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2004 by cisco Systems, Inc.
    Compiled Sat 08-May-04 10:43 by nmasa
    Image text-base: 0x60008FE0, data-base: 0x6151E000
    ROM: System Bootstrap, Version 12.0(19990210:195103) [12.0XE 105], DEVELOPMENT SOFTWARE
    BOOTLDR: 7200 Software (C7200-BOOT-M), Version 12.0(18)S, EARLY DEPLOYMENT RELEASE SOFTWARE (fc1)
    TV3 uptime is 3 weeks, 14 hours, 28 minutes
    System returned to ROM by reload at 23:02:24 EEST Thu Aug 12 2004
    System image file is "slot0:c7200-p-mz.122-18.S5.bin"
    Last reload reason: Reload command
    cisco 7206VXR (NPE300) processor (revision D) with 229376K/65536K bytes of memory.
    Processor board ID 21265679
    R7000 CPU at 262Mhz, Implementation 39, Rev 2.1, 256KB L2 Cache
    6 slot VXR midplane, Version 2.0
    Last reset from power-on
    Channelized E1, Version 1.0.
    X.25 software, Version 3.0.0.
    Bridging software.
    Primary Rate ISDN software, Version 1.1.
    PCI bus mb0_mb1 has 200 bandwidth points
    PCI bus mb2 has 0 bandwidth points
    1 FastEthernet/IEEE 802.3 interface(s)
    53 Serial network interface(s)
    48 Channelized E1/PRI port(s)
    125K bytes of non-volatile configuration memory.
    20480K bytes of Flash PCMCIA card at slot 0 (Sector size 128K).
    4096K bytes of Flash internal SIMM (Sector size 256K).
    Configuration register is 0x2112
    --- rtr 2 ---
    Cisco Internetwork Operating System Software
    IOS (tm) 7200 Software (C7200-P-M), Version 12.2(18)S5, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2004 by cisco Systems, Inc.
    Compiled Sat 08-May-04 10:43 by nmasa
    Image text-base: 0x60008FE0, data-base: 0x6151E000
    ROM: System Bootstrap, Version 12.0(19990210:195103) [12.0XE 105], DEVELOPMENT SOFTWARE
    BOOTLDR: 7200 Software (C7200-BOOT-M), Version 12.0(9)S, EARLY DEPLOYMENT RELEASE SOFTWARE (fc1)
    TV1 uptime is 3 weeks, 14 hours, 39 minutes
    System returned to ROM by reload at 22:51:22 EEST Thu Aug 12 2004
    System restarted at 22:53:54 EEST Thu Aug 12 2004
    System image file is "slot0:c7200-p-mz.122-18.S5.bin"
    Last reload reason: Reload command
    cisco 7206VXR (NPE300) processor (revision D) with 229376K/65536K bytes of memory.
    Processor board ID 18285647
    R7000 CPU at 262Mhz, Implementation 39, Rev 1.0, 256KB L2 Cache
    6 slot VXR midplane, Version 2.0
    Last reset from power-on
    Channelized E1, Version 1.0.
    X.25 software, Version 3.0.0.
    Bridging software.
    Primary Rate ISDN software, Version 1.1.
    PCI bus mb0_mb1 has 200 bandwidth points
    PCI bus mb2 has 0 bandwidth points
    1 FastEthernet/IEEE 802.3 interface(s)
    68 Serial network interface(s)
    48 Channelized E1/PRI port(s)
    125K bytes of non-volatile configuration memory.
    20480K bytes of Flash PCMCIA card at slot 0 (Sector size 128K).
    4096K bytes of Flash internal SIMM (Sector size 256K).
    Configuration register is 0x102
    TV3(config)#in fas 0/0.30
    TV3(config-subif)#tag ip
    % Tag switching not supported on interface FastEthernet0/0.30

  • Mouse pointer disappears when screen sharing

    When I use Back To My Mac from work to screen share my home Mac the pointer disappears. When I first connect and put the screen sharing window into full screen mode (into a separate space) everything is fine. I can then switch back to my current Macs screen and the mouse pointer is still working. But when I switch back to the screen sharing space the pointer is gone.

    yes! i have this problem.
    the difference is that it only happens when I'm using my thunderbolt display.
    i have an mb air and a mbp retina. there is no issue until i'm connected to it - then i get this freeze issue during screen share and my hidden dock won't appear.
    i've had 2 calls with applecare to date. will update you after my next call
    have you had any luck?

  • Text in text captions disappearing.

    I am using Captivate 6. When I save and close my project and then re-open it, the text inside my text captions disappears. I can still see the text caption box, but there is no text. It is also happening with buttons. I can see the text on the thumbnails in my filmstrip, but the captions on my stage are blank. Sometimes the text reappears if I click on the text box, but other times Captivate just shuts down all together (with no warning). I've been having a lot of trouble with Captivate 6 (compared to previous versions) and I thought maybe some of my issues were related to the fact that I was saving and publishing my projects on a network drive. I started and saved this one on my hard drive and still, I'm having this same problem with the text captions. Any thoughts?

    Hi! I found a solution to my problem.  Having 59 corrupted modules  (French and English) including the separate training menus, believe me, I had to find a solution. 
    My template from 5.0 was a blank one with images I had added (top logo, etc). In order to make my modules as WCAG as possible, I had merged these images in the background (in the master slides). But even before then, I was having the problem. 
    I created a brand new template in Captivate 6.0 after running the batch file (not sure if this made a difference but eh...). A good point now is that we don't have to merge images in master templates anymore, the system does not let you do it but they are merged automatically on the slides!  This is a great new feature I didn't know about.  After completing my new template, I created a new project from the template, copied all slides from my corrupted file and pasted them into the new project and it's solved! The text is now appearing, the preferences were created by default.

  • Text appears as scrabbled letters and some newspaper text is disappearing

    There are two main websites that are giving me problems. Both are websites that I use every day and one is a Canadian newspaper. The problem is that the text has disappeared/been replaced by gibberish, just letters or numbers. I don't know if the the fact that I visit these sites frequently is part of the problem.
    Has anyone else had this? I have never seen this problem before and I haven't changed anything in my computer so I'm puzzled.
    Many thanks.

    Thanks Eric, but unfortunately my Frankenstien Automator app was moving the originals and not making copies. I thank the gods I didn't roll out the app to the guys in the office before testing it myself. You could wreak havoc with these Automator apps if you so chose!
    I now have the hideous task of trying to relocate 11,500 images..clearly will never do it and will have to wait until I find missing images then go look for them. Unfortunately the app had eaten its way through my web site folder before I stopped it and the thousands of auto generated image slices, bullet points, etc have been scattered to the winds.
    Roll on Time Machine and OSX.5...plus a back-up regime or a 10gb iDisk account and 100mb broadband!
    Regards

  • MPLS tag-switching

    I'm trying to bootstrap myself on MPLS and ran into an unusual problem in the field.
    We've got a mesh of routers setup to do tag switching amongst each other to support a few pseudo-wire MPLS point to point links for customers.
    Our typical conf:
    ip cef
    mpls label protocol ldp
    tag-switching tdp router-id Loopback0 force
    int FastEthernet0/0
    description WAN link
    ip address 1.2.3.1 255.255.255.252
    mpls label protocol ldp
    tag-switching mtu 1532
    tag-switching ip
    int POS1/0
    description Another WAN link
    ip address 1.2.3.5 255.255.255.252
    mpls label protocol ldp
    tag-switching ip
    int FastEthernet 2/0
    description Non MPLS Cust Facing
    ip address 10.10.0.1 255.255.255.0
    int FastEthernet 2/1
    description MPLS Pseudowire Cust Facing
    mpls l2transport route 1.2.3.253 10101
    Now, it was my understanding that the tag-switching mtu statement is only for tag-switched packets, untagged IP uses the interface's default mtu of 1500 if not otherwise adjusted. Someone removed the tag-switched mtu 1532 statement off a couple WAN links, and both MPLS and non pseudowire tagged traffic were affected. There was still basic L2/L3 connectivity, but larger IP packets were being dropped.
    The observed behavior implied to me that all packets were being tagged, and reading up on the tag-switching command reference re-enforces that assumption. Dropping down to the lab, doing a ping between two routers with tag-switching setup and ldp neighborship established, neither echo requests or replies are tagged.
    Where is the hole in my understanding of how this works?

    Your understanding is correct. By default LDP will allocate and advertise label for all prefixes and all traffic will be therefore label switched. You need to configure label filtering if you only need certain prefixes to have labels assigned and advertised by LDP.
    Here's a brief example where only loopback addresses for the routers hosting the pseudowires are advertised.
    no tag-switching advertise-tags
    tag-switching advertise-tags for 1
    access-list 1 permit 192.168.100.0 0.0.0.255
    This same configuration need to be applied for all LDP enabled routers. It will only allow label advertisement for prefixes in the 192.168.100.0-192.168.100.255 range.
    Regards

  • Text UDF Disappear in CRYSTAL Layout

    Hi all,
    I built a SBO layout for sales quotation in crystal 2008.
    When i display the layout in the crystal editor every thing works fine, but when i open the layout in SBO all the text UDF disappears (including their column headers).
    Numeric UDF are displayed fine.
    Does anyone have a clue for the source of this problem.
    Thanks, Udi

    hi,
    are you using Stored Procedure or direct to tables?
    i will recommend you use Stored Procedure and use the SQL CAST to achieve the desired output.
    regards,
    Fidel

  • AirPort Extreme (5th Gen) WiFi access point disappears but wired ethernet is ok

    My AirPort Extreme SSID and access point "disappear" randomly from available WiFi networks. I had a 1st gen AirPort Extreme and never had this problem until earlier this year. I thought it might be a failing radio in the 1st gen unit so I used it as a good excuse to get a 5th gen AirPort extreme about 3 months ago. Same problem has been occuring; unfortunately it is random and I cannot get a handle on what/when/why it is happening.
    For example, my iPhone 4S was connected to the network at about 1700 today and when I next checked the phone around 2115, no wifi connection and my network was not listed in the WiFi connections. The base station is away from other wireless devices (mouse, keyboard) and is about 10 feet from the nearest PC and monitor. Both printers are accessed via ethernet, not wifi. The strange and puzzling thing is that the PC, which is connected by ethernet to the AirPort Extreme, is still connected to the internet (I can browse, check email, newsgroups, etc.).
    When I run the AirPort Utility, the base station is identified (AirPort Extreme 802.11n 5th Generation), there is an appropriate IP address, Version 7.6 firmware, and MAC address is listed. However, when I attempt to Continue or do a Manual Setup, I'm prompted for the admin password, the progress bar moves during 'reading from the Apple wireless device. Please wait...,' and then the utility reports "An error occured while tryong to access the Apple wireless device. Make sure your network connection is valid and try again. Error -6722.
    If I unplug, wait, and reattach the power to the base station, WiFi becomes available again. When the WiFi connection "disappears", the LED light is solid green.
    Any insights are appreciated; please let me know other helpful information I can provide.
    Scott

    I have the exact same problem and it's driving me nuts.
    I bought an airport extreme n last week and plugged it in, hooked it up to my adsl router by Ethernet, configured it to set up a new wifi network and got the green light. I use an iPhone 4, iPad 2, and Windows 7 PC with an N wifi adaptor.
    The airport works fine for about 2 hours before the wireless network disappears without a trace. Green light remains on the base station and I can connect fine by Ethernet.
    "it just don't make sense"
    I hope it's not a windows-7-only thing, Apple.
    PS. Updated firmware to the newest version, no difference.
    Airport is near to a wireless phone so I set a specific wireless channel and frequency to prevent a clash. No change.

  • Is there a new virus that affects Firefox? My browser is fine for a while and then the text will disappear, also some of the control buttons.

    This has been going on at least 3 months with the browser. The back arrow will disappear, sometimes the text completely disappears, sometimes you can see it but its unreadable, looks like the letters are missing pixels. Sometimes the images get corrupted with black pixelation. If you quit and restart it goes away, for a while.
    The problem seems to be affecting my online games as well. I play "Steampunk Tower" on Yahoo!'s free game tab and it always crashes my machine hard, as in abruptly shuts down the system with no warning. This is not the only game to be affected.
    I have both McAfee and Norton 360 and they find nothing when I scan, but they can only detect what they know about so I'm looking for something new and unreported. Or maybe an update failed or has corrupted a file, I don't know. I do know that its very irritating and I'd like to fix it, if possible.

    hello, maybe that's an issue with hardware acceleration - please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]], or in case this doesn't solve the issue or there is no new version available at the moment, disable hardware acceleration in ''firefox > options > advanced > general''.

  • Text keeps disappearing when I select it to make type at all / make changes / edit. Type tool is not working. I am running CS6 on a Macbook Pro Retina (which I am hating!) 10.9.4 - wish I'd never upgraded.

    Text keeps disappearing when I select it to make type at all / make changes / edit. Type tool is not working. I am running CS6 on a Macbook Pro Retina (which I am hating!) 10.9.4 - wish I'd never upgraded.
    Photoshop General Discussion

    The RAM needs specs as shown below.
    Maximum Memory
    16 GB (Actual) 8 GB (Apple)
    Memory Slots
    2 - 204-pin PC-10600 (1333 MHz) DDR3 SO-DIMM

  • Itunes on Windows 7 only displaying icons and pics? Text has disappeared?

    Itunes on Windows 7 only displaying icons and pics? Text has disappeared? Library content is still there but all text details now missing

    Same problem here!  Driving me nuts that it is somehow "running" as shown in the task bar, but it is not accessible in any way.

  • Using Rich text editor appends br tag at the last to the content.

    Using Rich text editor appends <br> tag at the last to the content. This does not happen in chrome. I am using v31.0 on ubuntu which seems to be the latest.

    What editor are you using? What are you trying to edit?
    What web site?

  • [CS3 JS] How to associate text with an XML tag

    Hello,
    I have a script that allows one to create or modify an XML tag after one selects text, a text frame or an existing XML tag. It works fine for making the XML tag but it does not associate the text or text frame to the tag. To do that I have to right click on the selection and use the context menu to Tag Text or Tag Frame.
    I want to make this automatic but cannot see how to script it.
    Thanks for any help

    I figured out the problem (which of course creates other interesting problems).
    In the line:
    var elementRef = rootElement.xmlElements.add (tagRef);
    I forgot to add a reference to the xmlContent. It should read:
    var elementRef = rootElement.xmlElements.add (tagRef, whatToTag);
    However, this script is designed to create a dialog box where one can either create a tag along with attributes or edit an existing one. I'll post it when I am done, but there is one hangup. The script not only changes the name of a selected xml tag but all tags with the same name. How can I get it to change only the selected tag? Below is the boiled down script that duplicates that problem.
    Thanks,
    Tom
    var myDoc = app.activeDocument;
    var selObj = app.selection[0];
    var TagIWantToChange = selObj.markupTag;
    var newTagName = "PleaseWork"; //This line replaces all the coding to create a dialog box where the tag name could be edited.
    TagIWantToChange.name = newTagName;

  • HTTP Receiver Adapter payload as single line plain text with out any tags.

    Hi PI experts,
    I have a strange problem in http receiver adapter.
    Sender RFC (SAP)  Receiver: HTTP.
    Receiver system expects the output from XI in the below format in a single line plain text with out any tags in the payload. and the content type should be application/x-www-form-urlencoded
    Group=Test&Sentinel=Web%20Server&Facility=5345&Order Number=XT-XWHM-Y-NA&Serial Number=123456&@LABEL_QUANTITY=5&@LABEL_NAME=111114_Q
    Is there any way to achieve this using http receiver adapter. Business is not ready to accept the output from XI not even in a single element instead they only need it as a JUST a plain text.
    Appreciate early response on this.
    Thanks in Advance,
    Jitender

    Dear Ola,
    Could you elaborate how you achieved in catching the response data from the receiver in case of HTTP receiver adapter?
    The target service is not a WebService but some python script that must to receive some paramters via POST request.
         HOW can I post this parameters?
    Here you entered the fields of the message type of the request in the header parameters of the receiver adapter? Thats fine.
    But what about the message type and vice versa of the response from the receiver?
    Regards
    Rebecca

  • Undo bug, mouse pointer disappears?

    Is just me or everyone has that annoying "undo" bug?
    That's what happens: when I press UNDO speedgrade starts to behave strangely.
    - If I press undo after clicking right mouse button (and I'm moving a color wheel with mouse) comes out a message "optimizing timeline" and timeline thumbnails are shown under the timeline. Sometimes there is a worst scenario: mouse pointer disappears and I have to quit SG and reopen to get my pointer back.
    - Pressing ctrl-z without right mouse button clicked (outside wheel edit mode, or whatever it is called..) sometimes works, sometimes appears the annoying progress bar "optimizing timeline" and several steps of undo are taken, even if I pressed cmd+z just one time.
    I use undo A LOT, and now I'm not confident using it because of this strange behavior (I'm on osx).
    Are you experiencing the same problems?

    You won't believe this but just cleaning a mouse can improve performance... read the following:
    How to Clean a Mechanical Mouse
    This article explains when and how you should clean a mechanical mouse. It does not apply to the the Apple Pro Mouse.
    You should clean a mouse if it is does not track smoothly, or if it jumps or skips. A mouse contains a small ball that must roll smoothly for the mouse to work properly. You should keep this ball free of dirt and oil by using the mouse on a clean, lint-free surface, and cleaning it occasionally.
    Use the following procedure to clean a mouse:
    1. Turn off your computer.
    2. Turn the mouse upside down and rotate the plastic ring on the bottom counterclockwise to release it.
    3. Turn the mouse right side up with one hand and catch the ring and ball with your other hand.
    4. Clean the three small rollers inside the mouse with a cotton swab moistened with water. Rotate the rollers to clean all around them. If there is a build-up of material on the rollers that the cotton swab does not remove, you can use your fingernail to gently remove the material.
    5. Wash the mouse ball in soapy, warm water with a mild soap such as a dishwashing liquid if oil from your hands has collected on it. Be sure to dry the mouse ball thoroughly.
    6. Gently blow into the mouse case to remove any accumulated dust.
    7. Put the mouse ball back in the mouse case and replace the retaining ring.
    If cleaning the mouse as described does not correct your issue, the mouse may need to be replaced. Have an Apple Authorized Service Provider check it for excessive wear or other failure.
    If that doesn't do the trick, if this is a mouse that required 3rd party drivers, you might try reinstalling the drivers. Also, try going back to default Mouse preferences on all Users, see if makes a difference.
    Carolyn

Maybe you are looking for

  • PO  Payment Terms

    Hello Experts, What is the T code or report  to see Purchase Order wise Payment Terms? Regards, Shirish

  • How do I show file size in the Finder icon view for images?

    How can I add the file size to the icon view "File Info" for images? I know how to get it to display the image size under View Options. In this mode it shows pixel dimensions for some images (not for svg or pdfs tho) and file size for some non-images

  • LOV with Criteria problem

    Hi, I'm using JDEV11.1.1.2 I have a View object used for LOV select kod, element, text  <- lov query        from tableAwith a ViewCriteria that filters the query with bind Var: ( KOD  = :kod )   <-- this is the view criteriaI have assinged this lov t

  • Photoshop 6 and the change in Color Dodge/Burn blend modes

    Photoshop 6 introduced a few changes in blending modes. Here´s a tip on how to save those older PSD´s, and continue with the Color Dodge/Burn behaviour you are used to: Courtesy of Mark Hamburg, verified and posted by Chad Baker: To create a new Colo

  • IChat 3.1.4 constant crashing on MacBook Pro

    Okay, so I know I'm not the only one with this problem? I can't keep iChat 3.1.4 running for more than a minute without it crashing. I typicallly run iChat using a wireless internet connection. I had this same problem on my old PowerBook G4. I've sen