Xfce keyboard shortcut doens't work

Recently my keyboard shortcut doesn't work anymore. E.g I have Super-e for rox and Super-Tab for verve-focus. It used to work perfectly fine. However, the Window manager shortcut works: e.g. Super-1 to desktop 1, Super-2 to desktop 2, etc. I've also checked xev and all keys are detected perfectly so I can't think of anything.
Thanks,

Not clear what you are trying to do exactly but make sure you source patched and/or target the track.

Similar Messages

  • [solved] xfce keyboard shortcuts won't work, tried arch wiki solution

    Keyboard shortcuts defined in the xfce's keyboard settings don't work,  as described in the wiki:
    http://wiki.archlinux.org/index.php/Xfc … 7t_working
    When I kill xfce4-settings-helper the shortcuts work again. After restarting X the problem returns. I renamed '/etc/xdg/autostart/xfce4-settings-helper-autostart.desktop' and  '~/.config/autostart/xfce4-settings-helper-autostart.desktop' as described in the wiki, But the second file is regenerated  after restarting X. Does anyone know a good solution?
    Last edited by rwd (2010-10-30 21:06:33)

    R00KIE wrote:What do you have in your .bash_profile? If it was working before then the problem should be somewhere else but I know that some things might not work when calling startx from .bash_profile depending on what and how you do things.
    I never noticed if xfce's application shortcuts were working properly or not because I just started using them since a few weeks.
    Leonid.I wrote:EDIT: Most likely you have seen this, but just in case: http://forum.xfce.org/index.php?topic=5304.0
    That looks like the same thing indeed.
    It seems to be this bug which hasn't been fixed since over a year O_o.
    .bash_profile
    . $HOME/.bashrc
    if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
    startx
    fi
    .bashrc
    # Check for an interactive session
    [ -z "$PS1" ] && return
    #restrict umask for group from the default 022
    umask 0017
    # added to use bash aliases and colored prompt
    if [ -f /etc/profile.bash ]; then
    source /etc/profile.bash
    fi
    #added for the auojump package (need to be sourced after /profile.bash
    if [ -f /etc/profile ]; then
    source /etc/profile.d/autojump.bash
    fi
    .xinitrc
    #!/bin/sh
    exec ck-launch-session xfce4-session
    /etc/profile.bash
    # /etc/profile.bash
    # Global settings for bash shells
    PS1='[\u@\h \W]\$ '
    #PS2='> '
    #PS3='> '
    #PS4='+ '
    export PS1 PS2 PS3 PS4
    #In the future we may want to add more ulimit entries here,
    # in the offchance that /etc/security/limits.conf is skipped
    ulimit -Sc 0 #Don't create core files
    if test "$TERM" = "xterm" -o \
    "$TERM" = "xterm-color" -o \
    "$TERM" = "xterm-256color" -o \
    "$TERM" = "rxvt" -o \
    "$TERM" = "rxvt-unicode" -o \
    "$TERM" = "xterm-xfree86"; then
    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
    export PROMPT_COMMAND
    fi
    PS1='\[\e[1;33m\][\u@\h \W]\$\[\e[0m\] '
    EDITOR=/usr/bin/nano
    #bash history
    HISTSIZE=1000
    HISTFILESIZE=1000
    # aliases
    alias ll='ls -al --group-directories-first --color=auto'
    alias la='ls -A --group-directories-first --color=auto'
    alias ..='cd ..'
    alias ...='cd ../..'
    alias ....='cd ../../..'
    alias .....='cd ../../../..'
    alias ping5='ping -c 5'
    alias lsa='ls -lah --group-directories-first --color=auto' # human readable (sizes) long and all ;-)
    alias lls='ls -l -h -g -F --group-directories-first --color=auto'
    alias lss='ls -shaxSrs --group-directories-first --color=auto' # sort by size
    alias lsd='ls -latr --group-directories-first --color=auto' # sort by date
    alias upgrade='sudo clyde -Syu --aur'
    function publicip {
    wget -q -O - checkip.dyndns.org | sed -e 's/.*Current IP Address: //' -e 's/<.*$//'
    # alarm(string alarmtext,num minutes )
    function alarm() {
    zenity --notification --timeout=$[$2 * 60] --window-icon=/usr/share/icons/gnome/scalable/status/appointment-soon.svg --text "alarm set for: $1 in $2 minutes" &
    sleep $2 $(($2 * 60)) && zenity --warning --text "$1" &
    # search bash history
    function hist {
    history | grep -i "${1}"
    # find filename in current directory and beneath
    function fnd {
    find . -iname "*${1}*" | more
    # find string in documents in current directory and beneath
    function grp {
    egrep -ri ''"${1}"'' . | more
    # search shoutcast channels by name/description/genre/current song
    function shoutcast {
    shoutcast-search $* -b ">96" -l ">10" \
    --format="%s\ngenre: %g\ncurrent track: %p\nbitrate: %b\nlisteners: %l\nurl: %u\n" \
    | more
    in ~/.config/autostart I have a few items that only contain :
    [Desktop Entry]
    Hidden=True
    And this one:
    [Desktop Entry]
    Hidden=true
    [Desktop Entry]
    Encoding=UTF-8
    Version=0.9.4
    Type=Application
    Name=xorg_fix
    Comment=scripts that need to be delayed to run
    Exec=/home/user1/documents/shellscripts/xorg_fix_delayed.sh
    StartupNotify=false
    Terminal=false
    Hidden=false
    In xorg_fix_delayed.sh I have put some things that wouldn't always be executed if I put them in a normal startup item or if  I put them in .xinitrc:
    xorg_fix_delayed.sh
    #!/bin/bash
    sleep 6
    # upnp shares mount
    #djmount ~/network/upnp &
    # mpd
    mpd ~/.mpd/mpd.conf &
    # disable trackpad during typing
    syndaemon -d -i 2 &
    # tint
    /usr/bin/tint2 &
    # trayer
    /usr/bin/trayer --transparent true --expand true --alpha 256 --tint 0x000000 --height 24 --widthtype request --SetDockType true $
    # xmodmap
    /usr/bin/xmodmap /home/user1/.Xmodmap &
    # conky
    /usr/bin/conky &
    # workaround for xfce shortcuts
    killall xfce4-settings-helper &
    # sshfs share
    ~/documents/shellscripts/sshfs_arch-server_mount.sh &
    Last edited by rwd (2010-10-29 18:56:10)

  • Keyboard shortcuts no longer work iOS 8.3. Triple tap Home button on Bluetooth keyboard no longer works either. Help!

    Since updating my iPad Third Generation ("New iPad") to iOS 8.3, Keyboard Shortcuts no longer work. Also on my Logitech EasySwitch Bluetooth Keyboard, triple tapping the home button on it no longer works to trigger Accessibility, even though that is still set up for triple tap in Settings and continues to work on the iPad itself. How can I get these functions back? Wah!

    TEmporary solution at iOS 8.3 keyboard shortcuts. Old bug reappeared.

  • Some Keyboard Shortcuts No Longer Working in Apps

    Recently, two specific keyboard shortcuts have stopped working within all my apps:
    command-1
    command-2
    For example, in Final Draft they are supposed to switch formatting to become scene headings and action lines, respectively.  All the other command shortcuts still work.  In Word, I have command-1 through command-6  commands set to change text colors.  Command-1 and command-2 no longer work but the rest stil function properly.
    All of my shortcuts worked perfectly for well over a year.  Anyone know why two of them might have stopped all of a sudden?
    Thanks in advance,
    ---Tim

    Ignore the permissions messages, as per http://support.apple.com/kb/TS1448
    Here's the second way:
    While logged into the newly created admin account, backup the bad account's folder, delete the bad account, selecting the save data option (which is stored in /Users/Deleted Users/ as a disk image), recreate the bad account using the same username/password combo, log out and back into the recreated original account. If the problem's solved, open the saved data dmg file in /Users/Deleted Users/, open the /Library/Preferences/ folder from the saved data, open the current /Users/restored account/Library/Preferences/ folder, and slowly copy plist files from the saved data folder to the current one that don't exist in it. Log out and back in to ensure there's no conflict and things still work correctly. Resolving conflicts or identifying corrupt plist files is a laborious process. Good luck.

  • When icloud drive  is on on in ios8 and 8.0.2 the keyboard shortcuts do not work.

    When iCloud Drive  is on on in ios8 and 8.0.2 the keyboard shortcuts do not work.
    ANyone found a solution to this?
    I Have tried it several times and when tured off iCloud Drive and tested the shortcuts on an email, all was working ok...turning icloud drive on again and again the keyboard shortcuts stoped working. Solutions?

    Hi Susana,
    I have a similar problem: when updating to iOS 8 my iPhone 5 the shortcuts disappeared and more over the keyboard often gets stuck. When repeatedly turning off iCloud drive the shortcuts are present again and the keyboard works as it should. A factory reset of my iPhone was not successful.
    The only "workaround" seems to turn off iCloud drive, however, this is of course no solution at all.
    Since reports on keyboard malfunctions are rather rare in this community, I think, you and I are using some special settings or apps which cause this problem.

  • Services/Keyboard Shortcuts Suddenly Stop Working

    Hi,
    I have had a problem for the past month or two relating to services/keyboard shortcuts that I have created in 10.10. I have had these same shortcuts for approximately 18 months and they worked fine on previous versions of OS X but since 10.10 they stop working after approximately 30-40mins. As I say it is only in 10.10 in 10.9 they worked all day every day without a problem.
    I have created a service which allows me to right click on a directory of images and select a name to rename all the images within that directory in descending order. I have also created a keyboard shortcut that allows me to launch the Chrome App Launcher.
    When I boot up the keyboard shortcut works fine. When I right click on a directory I see the services menu with all the services I have added. But after 30 minutes or so the keyboard shortcut no longer works (Apples on built in keyboard shortcuts work as they should) and if I right click on a directory the services entry is missing but apples own services appear at the bottom, the ones I have created created don't.
    If I try to access services through the menubar the services I have created are missing but apples own services are still there. In the services menu my keyboard shortcuts also appear but clicking on them does nothing.
    I have 2 images which show a before 30 mins how my context menu/menubar menu look and after 30 mins.
    I hope my question and images make sense and someone can help me find a remedy for this.
    http://imgur.com/SjcrgOS&zUgzTbO
    http://imgur.com/SjcrgOS&zUgzTbO#1

    Hi 454flutie,
    In MAC 10.7 or later the Library is hidden. I sent you a link in the above post to unhide library , you can refer to that. Once its open you can navigate to Indesign locations and do the needful.
    Steps to access hidden Library on MAC.
    Open Finder.
    On the top left there will be a option GO.
    Click on Go and Go to Folder.
    Type ~/Library and click on Go, it will open hidden Library.
    To access Hidden Library:
    http://helpx.adobe.com/x-productkb/global/access-hidden-user-library-files.html
    Thanks,
    Nikhil Gupta.

  • My "go to in point" and "go to out point" keyboard shortcuts are not working, and the default keys arnt either? any help would be amazing!

    my "go to in point" and "go to out point" keyboard shortcuts are not working, and the default keys aren't either? any help would be amazing!  I use these keys a million times a hour and since I have switched to cc I cant get them to work. track selection makes no difference or if there are markers on the timeline or not. 
    Anyone else feel me on this?
    any help?

    Well that still didn't make any kind of difference.  I would just do without it but I've becomes really use to it with Avid for so long.  I have to admit there are a lot of small moments like this that makes me miss Avid.  Any other suggestions? I have checked the keyboard shortcuts a few times and maybe I'm just missing something here...

  • Since I updated to Yosemite, keyboard shortcuts don't work in Safari

    I use Yosemite 10.0.2 and Safari shortcuts are unresponsive. What to do?

    Howdy peze,
    Welcome to Apple Support Communities.
    It sounds like there’s an issue with keyboard shortcuts in one specific app, Safari, since upgrading to OS X Yosemite. Take a look at the article linked below which describes a similar issue and walks you through the process of identifying conflicting keyboard shortcuts.
    OS X Yosemite: If a keyboard shortcut doesn’t work
    Ciao,
    -Jason

  • IOS6 keyboard shortcuts no longer work

    am I the only one with this problem???  since updating to iOS6, my keyboard shortcuts do not work....at all.  Then, having switched everything to iPhone 5, keyboard shortcuts still do NOT work at all.  I've tried everything I can think of... power cycle, restart, re-sync.  anyone else having this issue???

    IDK if this will help, I turned documents off in icloud and they worked, but when I toggle or turn documents on....no luck. I read in a separate post to uninstall and then reinstall emoji.....I really don't want to delete and reneter all my shortcuts I have at least 10 for every letter. Has anyone tryed the emoji un/reinstall? I'm fine with the documents being off in icloud......for now. I hope this helps someone.

  • My screen freezes up more often and the keyboard shortcuts don't work. I have to manually shut it down. what can I do about it?

    My screen freezes up more often and the keyboard shortcuts don't work. I have to manually shut it down. What can I do about it? It's a pain when I'm in teh middle of doing something or chatting in MSN Messenger.

    The problem is no Frre Ram. (green slice), Use Disk utility to REpair Permissins & see if the Ble turms to green.
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • Keyboard shortcuts no longer work after upgrade to ios 6

    After upgrading to iOS 6, the keyboard shortcuts on my iPhone 4S no longer work.  Not only that I can't change them either.  If I add or delete a shortcut, it simply goes back to the way it was when I exit the settings and go back in.   My iPad 2 doesn't have this problem, only my iPhone 4S.
    I tried restarting as well as doing a reset (hold home and power button).
    Any idea how to fix this? 

    If you want to go through all the steps I took:
    1. Restart
    2. Soft reset (hold home and power until Apple logo appears)
    3. Reset keyboard dictionary
    4. Reset all settings
    5. Clear autofill
    Only after the last step did things start working.  Prior to that I couldn't make any changes I made to the keyboard shortcuts stick, though every now and then changes would take.  Sometimes trying to delete a shortcut would crash the settings app.  In all cases the shortcuts didn't work.

  • Keyboard shortcuts don't work in Firefox 9.0.1 on Mac OS 10.7.2

    I've just bought a new MacBook Air with Mac OS Lion for the first time. No keyboard shortcuts work in Firefox 9.0.1 with a fresh install. Command-T or W or N or CXZ - none of them do anything. They all flash the appropriate menu bar (so the word File in the menu flashes when I press Cmd-T) but nothing happens.
    If I open the menu first and then press the shortcut it works.

    If anyone is interested in this on the Firefox team - I found I can make shortcuts work by pressing the Fn key at the same time (so Fn-Cmd-T for a new tab). I tried Beta and Aurora and the same thing occurs on both of those. It's a bit annoying but I guess I'll get used to it.

  • Keyboard shortcut no longer working in webapp after FF19 was installed

    I work with a company webapp that uses the keyboard shortcut Shift+F9 to populate text boxes. Prior to Firefox version 19 upgrade on my Windows 7 PC, the shortcut worked just fine. After the upgrade, the shortcut stopped working. I have uninstalled it and reinstalled it, still shortcut does not work. I have run in Safe mode, still no shortcut. Disabled Add-ons, still no shortcut.
    I uninstalled FF19 altogether and installed FF18. The shortcut worked just fine once again. All Add-ons intact. FF auto upgraded itself to ver 19 and the shortcut stopped working again.
    I also use IE8 with the same webapp and the shortcut works just fine. Any reason why FF19 has disabled this shortcut feature? I asked our company admin of the webapp we use and he has not heard of this issue happening until now.

    This is difficult to sort out without hands on access to the webapp. I think Firefox should still allows your webapp to detect the Shift+F9, or at least it does in this simple example:
    &lt;!DOCTYPE html>
    &lt;html>
    &lt;head>
    &lt;meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    &lt;title>Test Shift+F9&lt;/title>
    &lt;/head>
    &lt;body>
    &lt;p>Try Shift+F9&lt;br>&lt;input type="text" name="textinput" size="25" value="sample value">&lt;/p>
    &lt;script type="text/javascript">
    function keys(key){
    if (!key) {
    key = window.event;
    key.which = key.keyCode;
    if (key.which == 120){ // F9 key
    if (key.shiftKey){
    alert("Shift+F9 pressed!");
    } else {
    alert("F9 pressed without Shift!");
    return false;
    document.onkeyup = keys;
    document.body.focus();
    &lt;/script>
    &lt;/body>
    &lt;/html>
    It's possible that a change in Firefox 19 is interfering with the function triggered by the Shift+F9 keyboard shortcut. Is there another way to run it to see whether that might be the case?

  • New keyboard shortcut didn't work; neither did resetting default

    I wanted to create a new keyboard shortcut for sending mail, so I used the system prefs pane like the help file said (new application shortcut, select mail, etc). After creating my new shortcut (^X), it initially didn't appear in the Message menu for Mail. I quit Mail and restarted, and voila - but hitting ^X didn't send my message. That's annoying.
    So I figured I'd set the shortcut back, and hit the Restore Default button in the keyboard shortcuts preferences. The listing for the shortcut I created disappeared from the menu, but even after quitting Mail several times, and restarting the machine, Menu - Send still lists ^X as its shortcut. Which would be fine with me, but it still doesn't send my message when I hit ^X.
    My shortcut doesn't work, and resetting the defaults doesn't seem to be resetting what Mail thinks the shortcut is. Any thoughts? I'm on OSX 10.4.7, Mail is 2.1.
    PowerBook G4   Mac OS X (10.4.7)  

    lucke wrote:Perhaps you did some bad things to your grub config while playing with the new kernel?
    No, I did the changes temporarily, but none perminant.
    lucke wrote:Tried booting with kernel26-fallback.img?
    Not yet, I think I will do that tomarrow.
    lucke wrote:How did you play with the new kernel? Using ABS or using classic "make menuconfig && make && make install"? How did the recompilation fail?
    I used the wiki to compile it with ABS. It failed because I forgot to set it to be able to read EXT partitions, which it is located on.

  • Mac mini won't boot - keyboard shortcuts don't work

    Older Intel Mac Mini that I use as an entertainment / movie center. Leopard.
    I did a software update recently, but somehow botched it and interrupted the process.
    Ever since then, it won't start up correctly. It chimes, disk powers up, but then it gets stuck on the screen with the apple and rotating propeller. Can go on for hours if you let it.
    Took it to a dealer, who said it started up fine from another system an I should try starting it in target disk mode an reinstall the OS.
    Bought a USB keyboard specifically so I could press the T and tried it.
    It seems that none of the keyboard shortcuts work. I tried target disk mode (T), starting from a system disk (C), tried having it give me a choice of bootable volumes (Option) - nothing. It would appear the Mini doesn't recognize my brand new Apple USB keyboard.
    Tried the keyboard with my MacBook and there it works fine.
    Any ideas?

    OK, just found the answer while browsing the "more like this" answers that appeared after I posted my question.
    I wasn't aware that the new Apple Aluminium Keyboard doesn't play nice with the Mini and that the Mini doesn't recognize this particular keyboard in time for the boot sequence.
    Thank you for these helpful discussions:
    https://discussions.apple.com/message/9306774#9306774
    https://discussions.apple.com/message/9084810?messageID=9084810
    https://discussions.apple.com/thread/1477855?threadID=1477855&tstart=0
    Using the remote (press the menu key during boot-up) worked fine and I could choose to boot from a system disk.
    Spending $60 for a new keyboard that won't do what I bought it for is, however, another story. Grr.

Maybe you are looking for

  • URGENT advice needed on labels/textfields please!!

    I have been trying for days to add labels and textFields to my applet and can only manage to display one. My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition

  • Standard WebClient UI business role for the CRM 7.0

    Hello Gurus where can we get the below mentioned thing....i tried in service market place but i did not get The predefined authorization roles are provided as attachment BP_CRM_ROLES.ZIP to the collective note of this SAP Best Practices version. Down

  • Photo sharing option non existent in iTunes

    Hi Guys Bit of a weird one, a customer of ours cannot get photo sharing to work between his Mac (13" Macbook Pro) and 2nd generation Apple TV, music, video sharing etc all work absolutely fine but his iTunes (version 10.0.1) does not have "Choose Pho

  • 8i on RH7.1 with java.lang.System error

    Hi all, Please excuse me if this is the incorrect forum for this message. I've installed 8i on redhat 7.1 quite a few times, but have never experienced this problem. When I try to start dbassist, netca or any GUI driven app that requires a JVM, I get

  • Layers in After Effects

    I am trying to make a cutout animation so i made a character with different layers containing body parts and saved it as a psd file. When I imported the psd file to the after effect and opened the file as a composition, then i saw the layers in the t