[solved]xterm 294 breaks xmonad focus switching

After upgrading xterm from 293 to 294 this morning xterm is only capturing keyboard input when the mouse cursor has focused on its window. It is not sufficient to focus on the xterm window with keyboard commands. Without the mouse focus no text appears when the keyboard is used, but xmonad commands still function as expected.
Other programs will still capture keyboard input when focused on with keyboard shortcuts regardless of where the mouse cursor is.
Downgrading xterm to 293 resolves the issue.
Solution: back to normal with xterm 295
Last edited by incorrigible (2013-07-07 13:40:45)

I'm running xterm, Fluxbox and ArchLinux. After a recent upgrade, whenver I launch uxterm and try to type, it does not respond. If I launch another uxterm and close it (with X button, because Ctrl+D does not work), I get the first one working.
How do I debug this problem?

Similar Messages

  • Setting a JTree renderer breaks the focus traversal order

    Hello,
    I am not sure what's wrong, but when I set a customize JTree renderer it breaks the focus traversal order of my UI. Can someone tell me what's wrong and also how to prevent it from changing the order of my components?
    For instance, if I have component order 1, 2, 3, 4, 5 to begin with and after I call JTree.setCellRenderer(new SomeRenderer()), the order would change to something like this 1, 2, 4, 5, 3
    To give you an overview of what I am creating, I am customizing a UI that will be plug into JFileChooser to replace the default UI. I know I can create my own FocusTraversalPolicy, but the thing is that I don't know some of my components ahead of time. As long as I can prevent the order change, I think it would be fixed.
    Regards,
    Soot

    Try creating a Short, Self-Contained, Compileable, Executable
    program which has this problem. Right now it would take a
    mind-reader to solve your problem.

  • Focus switching to Home

    We use CRM 5.0 EP 7 Netweaver 2004s. I observed a strange problem. Whenever I click on radio buttons in Acquistion - Overview iView the focus switches to Home page. I observed similar behavior when I do Add to Portal Favorites. After doing more research found that if I use the SAP Web Dispatcher URL you see this behavior. If I use the App Server URL I do not see this behavior. We use SAP Web Dispatcher for load balancing.
    Any suggestions or help higly appreciated.
    Regards
    Mike

    See Focus switching to Home - please avoid crossposting in the future. Thanks in advance!

  • [Solved] Volume Notification with Xmonad

    Hello everyone,
    I'm trying to get this working for my environment.
    http://dmwit.com/volume/
    Now, i don't have xmonad-extras package installed so obviously the exact tutorial doesn't work for me. (I would like to avoid using cabal, i've had bad experiences with it, probably cuz i did a root install) Now I've tried the tutorial but when i change the volume i only get a large dzen square with this output "()". This is what i did for that to work on my xmonad.hs file:
    , ((0, 0x1008FF12), spawn "amixer -q set Master toggle")
    , ((0, 0x1008FF11), spawn "amixer -q set Master 10%-")
    , ((0, 0x1008FF13), spawn "amixer -q set Master 10%+; ~/.xmonad/bin/volume.sh" >>= alert)
    alert = dzenConfig centered . show
    centered =
    onCurr (center 150 66)
    >=> font "-*-helvetica-*-r-*-*-64-*-*-*-*-*-*-*"
    >=> addArgs ["-fg", "#80c0ff"]
    >=> addArgs ["-bg", "#000040"]
    The script volume.sh outputs the current value of the master. I currently use that script to output the volume to my xmobar. Of course output to screen and xmobar is redundant but i just like the visual .
    Is there a way to output the value of the script into a function in xmonad? In this case the alert function.
    After some googling i came accross this http://reddit.com.marqueefy.com/r/xmona … _spawpipe/
    but unfortunately i can seem to have the readprocess to work. (really cant figure out the syntax for it)
    Any input would be greatly appreciated.
    Thank you
    Dave
    Last edited by davama (2015-03-23 12:03:52)

    This is solved.
    The only solution i found was to install all my haskell programs using cabal exclusively as so:
    pacman -S ghc cabal-install happy alex
    cabal update
    cabal install cabal-install
    cabal install xmonad xmonad-contrib <<< here you should be using cabal from your local directory. ~/.cabal/bin/cabal
    cabal install xmonad-extras
    cabal install xmobar --flags="with_mpd"
    got into trouble when mixing packages from the official repo with haskell ones. Since they all come from haskell there should be no issues with conflicts. Granted some libraries get updated which cause xmonad to break but a simple delete and reinstall will do the trick. (has happened only once so far):
    remove ~/.ghc
    #### rerun cabal update, cabal install.... etc
    Hope it makes sense and it's useful to someone.

  • Xmonad focus stealing issue

    It would appear that I haven't the Hackell skills achieve this:  I'm trying to prevent any window from stealing focus with the exception of new terminal windows.  For instance, I'm currently focused on a terminal (urxvt) and I hit mod+shift+f to open Firefox.  I don't want focus to switch to Firefox.  But if I hit mod+shift+enter to open another terminal I do want that to steal focus.  I've investigated the Xmonad faq but have not been able to adapt the provided solution to my problem.
    http://www.haskell.org/haskellwiki/Xmon … ling_focus

    Hi zosodk69,
    Well, I think I found a possible solution to your problem by using "doF W.focusDown". The problem is that you must specify what applications will not steal focus instead of specifying the ones that will.
    To achieve this, you must create a ManageHooks to put there the windows that will not steal focus. Here is an example of my ManageHooks:
    -- Manage hook
    myManageHook :: ManageHook
    myManageHook = (composeAll . concat $
    [ [resource =? r --> doIgnore | r <- myIgnores]
    , [className =? c --> doShift (myWorkspaces !! 1) | c <- myWebS ]
    , [className =? c --> doShift (myWorkspaces !! 4) | c <- myChatS ]
    , [className =? c --> doShift (myWorkspaces !! 3) | c <- myGfxS ]
    , [className =? c --> doShift (myWorkspaces !! 5) | c <- myMusicS ]
    , [className =? c --> doFloat | c <- myFloatFC]
    , [className =? c --> doCenterFloat | c <- myFloatCC]
    , [name =? n --> doSideFloat NW | n <- myFloatSN]
    , [className =? c --> doF W.focusDown | c <- myFocusDC]
    , [composeOne [ isFullscreen -?> doFullFloat ]]
    where
    role = stringProperty "WM_WINDOW_ROLE"
    name = stringProperty "WM_NAME"
    myIgnores = ["desktop","desktop_window"]
    myWebS = ["Chromium","Firefox"]
    myGfxS = ["gimp-2.6", "Gimp-2.6", "Gimp", "gimp", "GIMP"]
    myChatS = ["Pidgin", "Xchat"]
    myMusicS = ["Clementine"]
    myFloatFC = ["Oblogout"]
    myFloatCC = ["File-roller", "zsnes", "Gcalctool"]
    myFloatSN = ["Event Tester"]
    myFocusDC = ["Firefox", "Chromium"]
    As you can see, Firefox and Chromium (as classname) will not steal foculs becouse they are in myFocusDC managehook, which is declared as:
    [className =? c --> doF W.focusDown | c <- myFocusDC]
    Last edited by nnoell (2011-04-07 17:33:02)

  • [SOLVED] SLiM no longer able to switch desktop environments

    So after the latest upgrade of slim (1.3.5 -> 1.3.6) I am no longer able to switch between desktop environments using F1. Now it just boots my default environment (dwm). I had it configured fine and it worked before this update. Is there a fix?
    Last edited by life_enjoyer (2013-10-06 17:46:52)

    xinitrc:
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    case $1 in
    kde)
    exec startkde
    xfce4)
    exec startxfce4
    openbox)
    exec openbox-session
    dwm|*)
    #xcompmgr -c &
    while true; do
    xsetroot -name "$( date +"%m-%d-%Y %R" )"
    sleep 1m # Update time every minute
    done &
    nitrogen --restore &
    /usr/bin/xscreensaver -no-splash &
    exec dwm
    esac
    and slim.conf
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    # numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Available sessions (first one is the default).
    # The current chosen session name is replaced in the login_cmd
    # above, so your login command can handle different sessions.
    # see the xinitrc.sample file shipped with slim sources
    sessions kde,xfce4,openbox,dwm
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Welcome to %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    default_user sebastian
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    #focus_password no
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme archlinux-simplyblack
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log

  • [SOLVED] XTerm and the Terminus font

    I having difficulty getting the Terminus font to display correctly in xterm.
    In .Xresources;
    When I use "xterm*faceName:Terminus:style=Regular:size=10" I get missing characters, like the curly quotes in man pages.  This line is from the wiki.
    When I use "xterm*font:-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*" there are no missing characters (that I've found).  However, the display output (like paging a text file, for example) is much slower.  Too slow, so I go back to the missing characters config.
    One other issue I've noticed, which may be related.  When I use the control-mousebutton menus, they display very slowly taking 2 or 3 seconds to draw. This happens even without loading my .Xresources file.
    Also note I'm using fontconfig-infinality-ultimate.
    My complete .Xresources file:
    xterm*Background:black
    xterm*Foreground:white
    xterm*cursorColor:green
    !xterm*pointerShape:arrow
    !xterm*pointerColor:blue
    xterm*VT100.geometry:80x32
    xterm*faceName:Terminus:style=Regular:size=10
    !xterm*font:-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*
    !xterm*faceName:Inconsolata:style=Regular:size=11
    !xterm*font:-*-dina-medium-r-*-*-16-*-*-*-*-*-*-*
    !xterm*renderFont:false
    xterm*dynamicColors:true
    xterm*utf8:2
    xterm*eightBitInput:true
    xterm*saveLines:4096
    xterm*scrollKey:true
    xterm*scrollTtyOutput:false
    xterm*scrollBar:true
    xterm*rightScrollBar:true
    xterm*jumpScroll:true
    xterm*multiScroll:true
    xterm*toolBar:false
    xterm*locale:true
    xterm*termName:xterm-256color
    xterm*metaSendsEscape:true
    Last edited by mixer (2013-09-03 03:56:33)

    mixer wrote:
    Switching to rxvt-unicode (plus rxvt-unicode-terminfo) fixed my problem with speed and missing Terminus characters.  I'm using the setting:
    URxvt*font:xft:Terminus:pixelsize=14
    The part that I don't understand is, if I specify my font as follows I get all the characters but slow display:
    URxvt*font:-*-terminus-medium-r-normal-*-16-*-*-*-*-*-iso10646-*
    You commented that this flavor (the XLFD form) is slow with both xterm and urxvt.
    As I noted, the problem is in how the server handles the fonts.
    urxvt's equivalent to xterm's "-fa" option is a feature introduced by konsole (a "xft:" prefix on the string).
    Actually you don't get "all" of the characters.  To see this, use xfd.  The 10646 encoding appears to be the
    original terminus (a small set of 256 characters) with a few others added.  But most of the 0-65535 range is
    filled with a filler-character.

  • Focus switch to finder after Security Update 2006-001

    Just updated with Security Update 2006-001 on PB G4 running 10.4.5.
    While running Safari or Mail or any App. and not using the app (like when reading a webpage or mail message) the focus of the OS switches to the Finder after about 10 seconds or so. So in the top menubar right from Apple icon the OS switches from Safari or Mail to Finder.
    Moving the mouse does not make any difference. i.e does not prevent or delay the switch.
    Clicking on the application window returns focus to that application (Safari or Mail).
    Anyone?

    thanks for the input. did not resolve the probelm though. finder started to crash every 2 minutes.
    but on the bright side: its a user thing. my guest account was not affected.
    so i trashed most of my prefs. that resolved the finder problem.
    currently working on restoring my prefs & email accounts, oh well

  • [SOLVED] Gnome Only One Workspace in Switcher

    Hi,
    I just installed Gnome but the workspace switcher in the panel is only showing the current workspace. When I go into the preferences the option to show all the workspaces is greyed out. How can I fix this?
    Thanks!
    Last edited by VoodooSteve (2009-05-22 14:37:42)

    Thanks for the replies. I first tried relogging in but that didn't work, but I read that killing the panel works and it did. Strange that relogging in didn't have the same effect. Anyways, marking as solved.

  • [SOLVED] Configuring Evilwm and xmonad I broke startx command

    This is a new install and I'm starting off minimal. That is I chose to skip a full Desktop Environment and try out a few of the new (to me) Window Managers.
    First, I installed EvilWM using pacman. Following the ArchWiki pages, I added ~/.xinitrc and ~/.Xresources to my home directory for Evil and everything was OK. I could use Evil with #startx command.
    On a lark I also added xMonad using Pacman, though I took no measures to configure it beyond temporarily adding a few scripting lines to accept an argument to startx command. And before I could test this I powered off to return later. Now, when I use the startx command I get a flash of the screen and then I'm kicked back into terminal window. If I try to use the #xrdb command, I get "xrdb: Can't open display ''. And the $DISPLAY env var is not set.
    Next. I went about following the uninstall instructions for xMonad. (basically I used packman's -R command and confirmed none of the files listed on the uninstall page were present). But, strangely, without any of these files, xMonad seems to be operational for another user profile which doesn't have any either .xinitrc or .Xresources. Find does not locate any of the XMonad files. So unless Evil is now behaving like XMonad, some weird kind of delay is happening.
    Any ideas what's going on here? I haven't the foggiest.
    //added the second user info
    Last edited by xtian (2013-09-17 21:17:31)

    Update:
    Not sure when it was fixed, but the command "#xrdb -load ~/.Xresources" is working as expected and $DISPLAY var has _something_. So evidently the something it has is the expected something, not that I'd recognize it as anything useful...
    # echo $DISPLAY
    :0
    //UPDATE
    You'll have to tweak $DISPLAY to confirm this. I think I found where this var is set. While going through Xorg wiki subsection on tweaks, I noticed in the file /usr/bin/startx:
    #!/bin/bash
    # This is just a sample implementation of a slightly less primitive
    # interface than xinit. It looks for user .xinitrc and .xserverrc
    # files, then system xinitrc and xserverrc files, else lets xinit choose
    # its default. The system xinitrc should probably do things like check
    # for .Xresources files and merge them in, start up a window manager,
    # and pop a clock and several xterms.
    # Site administrators are STRONGLY urged to write nicer versions.
    unset DBUS_SESSION_BUS_ADDRESS
    unset SESSION_MANAGER
    userclientrc=$HOME/.xinitrc
    sysclientrc=/etc/X11/xinit/xinitrc
    userserverrc=$HOME/.xserverrc
    sysserverrc=/etc/X11/xinit/xserverrc
    defaultclient=xterm
    defaultserver=/usr/bin/X
    defaultclientargs=""
    # Added as per archlinux/xorg wiki; -X
    defaultserverargs="-deferglyphs 16"
    defaultdisplay=":0" <------------------------ $DISPLAY
    clientargs=""
    serverargs=""
    enable_xauth=1
    All fixes I found for dealing with $DISPLAY recommend setting it in the user's environment settings.
    Last edited by xtian (2013-09-18 01:24:54)

  • [solved]xterm doesn't utilize all screen space in tiling wm's

    As can be seen in the screenshot, xterm leaves a bunch of pixels unused at the side and bottom. No other program does this. Do I have to use another *term that uses all the space, or can xterm/ratpoison be fixed in some way?
    This is with ratpoison, but if I recall correct it was the same in Musca.
    Last edited by hatten (2010-02-17 14:16:30)

    hatten wrote:As can be seen in the screenshot, xterm leaves a bunch of pixels unused at the side and bottom. No other program does this. Do I have to use another *term that uses all the space, or can xterm/ratpoison be fixed in some way?
    I used to think this way however now I much prefer to set xmonad to honour size hints.
    In a dynamic tiling wm, ignoring size hints causes issues when the terms are shuffled around and resized on the display as you open and close windows. You often end up with a partial line of text at the bottom of the terminal that is visible but not cleared with Ctr-L or clear. It looks ugly. I much prefer my terminals to have a gap around the edges rather than seeing this partial text on the bottom edge.

  • [SOLVED] Xterm window title problem

    HI!
    I finally decided to install Arch with openbox, because I have some free time for it and it looks really nice for me. At the beginning every problem could be solved, but now I think I need your help.
    To have nice-looking transparent terminals on my desktop, started at boot, I installed DevilsPie and Xcompmgr. I started to write some fancy devilspie code in ~/.devilspie/xterm.dc:
    (if
    (is (window_name) "MyTerminal")
    (begin
    (spawn_sync (str "transset-df -i " (window_xid) " 0.7") )
    In ~/.xinitrc and ~/.config/openbox/autostart I put commands starting devilspie and xterm:
    devilspie -c &
    xterm -T "MyTerminal" &
    But instead of having name "MyTerminal" console still have name "severus@severus:~", according to current location. Nothing can force xterm to have different name. And here is my problem: how can i recognize my window in devilspie script, when it has different name than it should? How can I override the window title of xterm? I guess that automatic update of terminal title can be disabled, but where? I was looking, for now without effect.
    Last edited by severus (2013-06-26 20:57:23)

    Sure, i though you should match against the WM_CLASS in your DevilsPie config script and not against the WM_NAME.
    The window title will be set by the global bashrc int /etc/bash.bashrc.
    Look at http://www.faqs.org/docs/Linux-mini/Xterm-Title.html to see the escape sequences etc.

  • Xmonad focused window border color? =)

    hey guys,
    kind of a xmonad noob, but loving it. currently my focused window's border color is red, which variable do you usually change to swap the colors? tried a few things but nothing worked. should I post my .hs?
    thanks
    sleepy 1

    take a look here to see how simple your xmonad.hs can be, then look at the bottom of this to get the specific functions (variables) available in the main-do block.
    Last edited by brisbin33 (2010-04-28 18:43:32)

  • [SOLVED] screen brightness too low when switching tty

    I have autologin enabled in LightDM, so when I boot I am taken to my MATE desktop automatically. This happens in the default tty (tty1).
    Sometimes I want to switch to a different virtual terminal (e.g., by pressing Control+Alt+F2) without ending my session in tty1. However, most of the time when I do this I find that the brightness in the new tty (e.g., tty2) is so low that I can hardly see the login prompt. When I switch back to tty1 the brightness in the X session is fine. Switching back to tty2 I see that it is still dim. Hitting either the brightness-up or the brightness-down (!?) key on the laptop causes the brightness in tty2 to jump to normal.
    Does anyone know how to fix this so that when I switch to a different tty the brightness is at a reasonable level right away? I am on a Lenovo Thinkpad T520 (no Nvidia, just integrated Intel graphics) in case it matters.
    Last edited by bdantas (2014-08-19 17:53:05)

    As an experiment, I logged in to non-graphic mode in tty1 (by adding "systemd.unit=multi-user.target" to grub2's kernel line), then tried switching ttys. No brightness problems!
    As another experiment, I allowed regular boot to my desktop in tty1 (LightDM -> MATE autologin) but then got out of graphical mode by opening a terminal emulator and typing "sudo systemctl isolate multi-user.target". Once I had a cli in tty1 I then tried switching ttys. Again, no brightness problems.
    I can conclude that when switching tty's, the new tty is too dim only if I have a graphical session running in tty1. Therefore, I don't think this is a kernel problem. Seems that something related to lightDM or X or MATE running in tty1 is causing the problem.

  • [SOLVED] Xterm Japanese/Unicode Characters not displaying (??) instead

    Hey,
    So I'm new to linux and arch and I've made a point of reading every relevant thread posted when I searched for 'Japanese terminal' and I haven't been able to get my terminal to display Japanese characters. All I see are ?????.
    This is my /etc/locale.config
    LANG=en_CA.UTF-8
    LC_COLLATE=C
    This is the output from running:
    $ locale
    LANG=en_CA.UTF-8
    LC_CTYPE="en_CA.UTF-8"
    LC_NUMERIC=\"en_CA.UTF-8\"
    LC_TIME=en_CA.UTF-8
    LC_COLLATE=C
    LC_MONETARY=\"en_CA.UTF-8\"
    LC_MESSAGES=C
    LC_PAPER=\"en_CA.UTF-8\"
    LC_NAME=\"en_CA.UTF-8\"
    LC_ADDRESS=\"en_CA.UTF-8\"
    LC_TELEPHONE=\"en_CA.UTF-8\"
    LC_MEASUREMENT=\"en_CA.UTF-8\"
    LC_IDENTIFICATION=\"en_CA.UTF-8\"
    LC_ALL=
    This is the output from running:
    $ locale -a
    C
    POSIX
    en_CA.utf8
    en_US.utf8
    ja_JP.utf8
    This is my ~/.Xresources file:
    ! Name
    Xterm*termName: xterm-256color
    ! Font style
    xterm*faceName: xft:monospace:size=11
    xterm*faceNameDoublesize: xft:Droid Sans Japanese:style=Regular
    xterm*utf8: 2
    ! Window size
    xterm*VT100.geometry: 100x40
    ! No more bell
    xterm*vbell: True
    ! Scrollback
    xterm*savelines: 4096
    ! double-click to select whole URLs :D
    xterm*charClass: 33:48,36-47:48,58-59:48,61:48,63-64:48,95:48,126:48
    ! Scrollbar
    xterm*rightScrollBar: false
    xterm*ScrollBar: false
    ! Foreground & background
    *background:#293b3b
    *foreground:#bf6e63
    !terminal colours----------------------------------------------------------------------
    !http://www.xcolors.net/dl/fishbone
    !black
    *color0:#293b3b
    *color8:#344040
    !red
    *color5:#bf5357
    *color13:#bf6367
    !green
    *color2:#41a551
    *color10:#51a55f
    !yellow
    *color3:#aea64f
    *color11:#aea75d
    !blue
    *color4:#416ea5
    *color12:#5177a5
    !magenta
    *color1:#bf6053
    *color09:#bf6e63
    !cyan
    *color6:#714da5
    *color14:#7859a5
    !white
    *color7:#876868
    *color15:#876f6f
    Also, when I trying inputting text into xterm using ibus's anthy, nothing gets entered, and I'm assuming that is related to the problem of not being able to view the Japanese characters properly
    I'm really not sure where I'm going wrong, but it's driving me nuts and any help would be greatly appreciated.
    Last edited by Bipolarbearz (2014-12-24 03:24:40)

    Your default xterm font is DejaVu Sans Mono. I don't know how scim and anthy may complicate setting up a locale but you do appear to have something oddly configured.
    Your output from the bare locale command shows backslashed double quotes.  My output shows no backslashes:
    $ locale
    LANG=en_US.UTF-8
    LC_CTYPE="en_US.UTF-8"
    LC_NUMERIC="en_US.UTF-8"
    LC_TIME="en_US.UTF-8"
    LC_COLLATE=C
    LC_MONETARY="en_US.UTF-8"
    -- snip --
    LC_ALL=
    The only line I have uncommented in /etc/locale.gen is:
    en_US.UTF-8 UTF-8
    The only possibly significant difference between your xterm settings and mine is the way we set xterm to use UTF-8. I have:
    ⁣    XTerm*locale: true
    You have:
    ⁣    xterm*utf8: 2
    I think they may just be different methods that reach the same end when you only have UTF-8 locales installed.  I can get the Droid glyphs to display using either resource setting.
    If I were in your shoes, I would work through the Archwiki's Locale page, step by step, to see if I could silence the warnings.
    If the warnings still appeared, I would step back, and do things one step at a time. If you uninstall anthy, or scim-anthy, and regenerate your locales, do the warnings disappear?  Does xterm display the CJK glyphs? If not, does regenerating the locales using only en_CA.UTF-8 work?
    I wish I could offer more help but I don't have the knowledge to offer more.
    If you want to see which installed fonts say they have Japanese language support, use this command:
    fc-list ':lang=ja'
    Do note that what a font advertises and what you and I would call language support may be different.

Maybe you are looking for

  • Screen Shots in APEX 3.0

    Hi All, I have a requirement for my users to provide them with screen shots of all the forms /reports in their new application. We call these mock-ups. They will review them possibly add a column or rename something. I have tried using "print screen"

  • Black & White Photos to not appear in iPhoto

    I added several black & white photos into the library of iPhoto along with many color photos, but none of the black & white show. Each of the B & W have a black place holder but it is totally black. If I click a photo, it displays as a ghost image la

  • How do i clear history in quick time

    i need to clear all the history from quick time, preview and recents

  • Old MacBook Pro won't boot - my options?

    This is slightly ironic. I've got a new Retina MacBook Pro on order - it's probably somewhere in the pipeine right now. So I wake up this morning, with a very full, busy day at work and critical stuff to get done, go to startup my old (very old) MacB

  • No boot after install

    Hi all, On my toshiba laptop (a15-7422) I can get a successful install of solaris 10 10/09, but when it goes to start the first time it tells me it can not get domain name. It says its trying to use short name but goes to sleep and never starts. I ha