Since I'm migrating to 12.04 from 11.04 I have to re-do all my fav edits and tweaks. It got me thinking that others might have some nifty tricks that I would love to know.
Here's some of mine:
Keyswaping: I never use the "grave" key and rarely the backslash, but I very often use the tilde and pipe (a.k.a. "bar") keys in the terminal. If you don't know what keys I'm talking about look to the left of the 1 key and above and right of your enter key (US keyboard). Since the tilde and pipe both require the shift key, I swap them with each other so I don't have to shift when I'm in the terminal. To do this, simply create a file called .Xmodmap in your home and put these lines into it;
keycode 49 = asciitilde grave asciitilde grave asciitilde grave
keycode 51 = bar backslash bar backslash bar backslash
This reverses those two keys.
Dolphin: Besides the obvious adding of the rootactions-servicemenu (Thanks Rog!) I like to add a Hidden file toggle to the menu bar. This makes it much quicker to toggle on and off hidden files without going to the tools menu. Just edit the menu bar and add the key. It doesn't have it's own icon so I use the "show-menu" icon because it looks most like a hidden file toggle button to me. While I'm doing this, I also add Delete and Trash buttons too.
Another nice addition to Dolphin is KDE Image Menu or KIM. It's not in the repos, but a very useful tool.
Finally for dolphin: I hated downloading a new iso and having to either open a terminal and manually run "md5sum" or open the file with k3b just to check the hash. So i wrote my own little service menu that allows me to right-click and check the md5sum.
Create this file at this location: /usr/share/kde4/services/ServiceMenus/checkmd5.desktop
I'll post some more when it's not so late...
Here's some of mine:
Keyswaping: I never use the "grave" key and rarely the backslash, but I very often use the tilde and pipe (a.k.a. "bar") keys in the terminal. If you don't know what keys I'm talking about look to the left of the 1 key and above and right of your enter key (US keyboard). Since the tilde and pipe both require the shift key, I swap them with each other so I don't have to shift when I'm in the terminal. To do this, simply create a file called .Xmodmap in your home and put these lines into it;
keycode 49 = asciitilde grave asciitilde grave asciitilde grave
keycode 51 = bar backslash bar backslash bar backslash
This reverses those two keys.
Dolphin: Besides the obvious adding of the rootactions-servicemenu (Thanks Rog!) I like to add a Hidden file toggle to the menu bar. This makes it much quicker to toggle on and off hidden files without going to the tools menu. Just edit the menu bar and add the key. It doesn't have it's own icon so I use the "show-menu" icon because it looks most like a hidden file toggle button to me. While I'm doing this, I also add Delete and Trash buttons too.
Another nice addition to Dolphin is KDE Image Menu or KIM. It's not in the repos, but a very useful tool.
Finally for dolphin: I hated downloading a new iso and having to either open a terminal and manually run "md5sum" or open the file with k3b just to check the hash. So i wrote my own little service menu that allows me to right-click and check the md5sum.
Create this file at this location: /usr/share/kde4/services/ServiceMenus/checkmd5.desktop
Code:
[Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=application/x-cd-image;application/x-iso;application/x-mdf;application/x-nrg;application/x-iso9660-image; Icon=dialog-ok Actions=checkmd5; TryExec=md5sum [Desktop Action checkmd5] Name=Read md5 Checksum Icon=dialog-ok Exec=md5sum %F | zenity --text-info --width 800 --title Checksum
Comment