Main Menu
From KevinWiki
(Difference between revisions)
(New page: Category:Linux ==Trouble Shooting== When 'Main Menu' application breaks the main menu, remove <code>~/.config/menus/applications.menu</code file <pre> $ rm ~/.config/menus/application...) |
|||
Line 2: | Line 2: | ||
==Trouble Shooting== | ==Trouble Shooting== | ||
+ | === Main Menu === | ||
When 'Main Menu' application breaks the main menu, | When 'Main Menu' application breaks the main menu, | ||
remove <code>~/.config/menus/applications.menu</code file | remove <code>~/.config/menus/applications.menu</code file | ||
Line 10: | Line 11: | ||
When the programmes installed through wine are not removed in the menu, | When the programmes installed through wine are not removed in the menu, | ||
check <code>~/.local/share/</code> directory and remove if there are any files and directories related to wine. | check <code>~/.local/share/</code> directory and remove if there are any files and directories related to wine. | ||
+ | |||
+ | |||
+ | === Issue with Intel Graphics === | ||
+ | * If there are any issues with Intel graphics, do | ||
+ | <pre> | ||
+ | $ sudo adduser $USER video | ||
+ | </pre> | ||
+ | |||
+ | * Then edit /etc/X11/xorg.conf (create if it does not exists) | ||
+ | |||
+ | /etc/X11/xorg.conf | ||
+ | --------------------------- | ||
+ | Section "Device" | ||
+ | |||
+ | Identifier "Card0" | ||
+ | |||
+ | Driver "intel" | ||
+ | |||
+ | Option "AccelMethod" "uxa" | ||
+ | |||
+ | #Option "AccelMethod" "sna" | ||
+ | |||
+ | EndSection | ||
+ | |||
+ | --------------------------- |
Revision as of 14:36, 17 October 2013
Trouble Shooting
Main Menu
When 'Main Menu' application breaks the main menu,
remove ~/.config/menus/applications.menu</code file
$ rm ~/.config/menus/applications.menu
When the programmes installed through wine are not removed in the menu, check <code>~/.local/share/ directory and remove if there are any files and directories related to wine.
Issue with Intel Graphics
- If there are any issues with Intel graphics, do
$ sudo adduser $USER video
- Then edit /etc/X11/xorg.conf (create if it does not exists)
/etc/X11/xorg.conf
Section "Device" Identifier "Card0" Driver "intel" Option "AccelMethod" "uxa" #Option "AccelMethod" "sna" EndSection