[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2015-09-09 Thread TreviƱo
** Changed in: compiz
   Importance: Undecided => Low

** Changed in: compiz
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/76965

Title:
  Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do
  not work with Compiz

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/76965/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2009-07-03 Thread Jonathan Groll
This issue has actually not re-appeared in jaunty. But the compiz config
settings manager does need to have the 'commands' plug in enabled. Go to
System>Preferences>Compiz config settings manager from the menu. Ensure
that the commands plug in has got a tick next to it.

If you don't find the compiz config manager, install package
"compizconfig-settings-manager".

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2009-04-04 Thread Cameron Braid
This issue has re-appeared in jaunty

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-07-24 Thread Travis Watkins
Those don't exist anymore.

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-07-24 Thread Adriaan Peeters
/apps/metacity/global_keybindings/switch_to_workspace_* should also be
copied over (to
/apps/compiz/general/allscreens/options/switch_to_desktop_*_key).

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-07-17 Thread Travis Watkins
Compiz in gutsy copies these over.

** Changed in: compiz (Ubuntu)
   Status: Confirmed => Fix Released

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-06-06 Thread Evgeni Spasov
This script from juve works for me.
I turned off desktop effects. Made 4 desktops. Put the script in 
/usr/bin/compiz just before the last line (there calls compiz.real). Turned on 
effects.
I noticed when I made 1 desktop without effects and then switche then on  - 
there is no desktop switching (also the script was in /usr/bin/compiz). When I 
configure 4 desktops without effects and then switch effects on - all works 
fine.

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-28 Thread MGdesigner
Hi i tested  Juve's script,but still no working  >_<~~

I add it as this.Am I adding this code into the wrong position?

GLXINFO='/usr/bin/glxinfo'
EXT_TFP='GLX_EXT_texture_from_pixmap'

COMPIZ_OPTIONS="--no-fbo --ignore-desktop-hints"


#added by Shoichi START
# WORKAROUND
#
# add this to your compiz startupscript (ususally /usr/bin/compiz)
# You have to add the code BEFORE compiz.real is executed.

# copy metacity custom shotcuts + commands
for i in `seq 1 12`
do
 METACITY_KB_CMD=`gconftool -g /apps/metacity/keybinding_commands/command_$i`
 METACITY_KB=`gconftool -g /apps/metacity/global_keybindings/run_command_$i`
 if [ "$METACITY_KB_CMD" != "disabled" ] && [ "$METACITY_KB_CMD" != "" ]
 then
  gconftool -s "/apps/compiz/general/allscreens/options/command"$i --type 
String "$METACITY_KB_CMD"
 fi
 if [ "$METACITY_KB" != "disabled" ] && [ "$METACITY_KB" != "" ]
 then
  gconftool -s "/apps/compiz/general/allscreens/options/run_command"$i"_key" 
--type String "$METACITY_KB"
 fi
done

# copy metacity desktop-count to compiz-hsize (fixes Cube bug)
METACITY_NUM_WORKSPACES=`gconftool -g /apps/metacity/general/num_workspaces`
gconftool -s /apps/compiz/general/screen0/options/hsize --type int 
$METACITY_NUM_WORKSPACES

# good luck !


# Check whether the GLX_EXT_texture_from_pixmap extension is available
in

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-24 Thread MGdesigner
I confirm the bug,too.What I found is

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-24 Thread juve
Adding this code to your /usr/bin/compiz, just BEFORE compiz.real is executed
will copy your metacity settings (desktop count and hotkeys) to compiz

Good Luck !

PS: I added the code as attachment, because it does not look not very
good in my posting.


** Attachment added: "copy metacity desktop count and hotkey settings to compiz"
   http://librarian.launchpad.net/7398813/copy-compiz-settings

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-24 Thread juve
# WORKAROUND
#
# add this to your compiz startupscript (ususally /usr/bin/compiz)
# You have to add the code BEFORE compiz.real is executed.

# copy metacity custom shotcuts + commands
for i in `seq 1 12`
do
METACITY_KB_CMD=`gconftool -g 
/apps/metacity/keybinding_commands/command_$i`
METACITY_KB=`gconftool -g 
/apps/metacity/global_keybindings/run_command_$i`
if [ "$METACITY_KB_CMD" != "disabled" ] && [ "$METACITY_KB_CMD" != "" ]
then
gconftool -s 
"/apps/compiz/general/allscreens/options/command"$i --type String 
"$METACITY_KB_CMD"
fi
if [ "$METACITY_KB" != "disabled" ] && [ "$METACITY_KB" != "" ]
then
gconftool -s 
"/apps/compiz/general/allscreens/options/run_command"$i"_key" --type String 
"$METACITY_KB"
fi
done

# copy metacity desktop-count to compiz-hsize (fixes Cube bug)
METACITY_NUM_WORKSPACES=`gconftool -g /apps/metacity/general/num_workspaces`
gconftool -s /apps/compiz/general/screen0/options/hsize --type int 
$METACITY_NUM_WORKSPACES

# good luck !

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-22 Thread Emilio Pozuelo Monfort
** Changed in: compiz (Ubuntu)
   Importance: Undecided => Low

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-19 Thread Adriaan Peeters
See also bug #103152.

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 76965] Re: Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work with Compiz

2007-04-04 Thread VF
** Summary changed:

- Keyboard Shortcuts do not work with Compiz
+ Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not 
work with Compiz

-- 
Metacity Keyboard Shortcuts manually defined in gconf (not capplet) do not work 
with Compiz
https://bugs.launchpad.net/bugs/76965
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs