Showing posts with label keyboard shortcuts. Show all posts
Showing posts with label keyboard shortcuts. Show all posts

Sunday, March 23, 2014

16 Useful VLC keyboard shortcuts

0 comments

16 Useful VLC keyboard shortcuts

If you're like me , you prefer to do things quickly. Using keyboard shortcuts to help shorten the time instead of looking for things such as buttons and lists ,  more time to enjoy the music and videos . So you need to check this list of 16 Useful VLC keyboard shortcuts. It makes life easier I think.

SPACE                        :     Pause or Play again.
F                                  :      Full screen or back to normal size.
Ctrl + Up / Down        :      Control the volume of sound.
M                                :      Mute the sound.
T                                 :      Show the remaining time.
+/-                               :      Speed or slow the media.
S                                 :      Stop the media.
Ctrl+H                        :      Hide the buttons and the interface in general.
E                                 :     Watch video clips frame by frame.
V                                :      Enable translation or disable it.
P                                 :      Play previous media in the playlist.
N                                :      Play next media in the playlist.
Ctrl + T                      :     Go exactly to time you specify.
Ctrl + P                      :     Go to VLC preferences.
Ctrl + L                      :     Show the playlist or hide it.
L                                :     Loop the media or the playlist or disable looping.

     
Read more...

Monday, December 23, 2013

Terminal : keyboard Shortcuts

0 comments

Terminal : keyboard Shortcuts

Keyboard Shorcuts helps in writing codes easily and shorten time.
Some users, probably power users who loves doing some works via the Command Line, performing complicated tasks with just a few keystrokes.

Basic Keyboard Shortcuts

Up/Down Arrows = With those two keys, you can move between your last commands.
Ctrl+Left/Ctrl+Right = Jumps between arguments (words) in your command
Ctrl + U = Clears all characters starting from the cursor position.
Ctrl + K = Clears all characters starting from the end of the command to the position of the cursor.
Ctrl + A = Moves you to the start of the command.
Ctrl + E = Moves you the the end of the command.
Ctrl + L = Clears the screen.
Ctrl + R = Lets you search your command history.
Ctrl + Shift + T = Opens new Tab.
Ctrl + Shift + N = Opens new Terminal.
Ctrl + P = Lets you Browse the command you executed before.
Ctrl+ O = Works as "Enter" button.
Ctrl + Shift + C = Lets you copy selected text.
Ctrl + Shift + V = Lets you paste.
Tab = This is the powerful shortcut, Everyone loves it. It completes paths and commands.

With Path :

cd ~/De 

after hitting Tab, It completes it.

cd ~/Desktop

With command :

nan

after hitting Tab, It completes it.

nano 

What if there are resemblance between names ?

We take for example folder "De" and "Desktop"

we typed "De" and hitting Tab for auto-completion. It makes an output : "De", "Desktop", we have then to add another caracther to make it different.

cd ~/Des

     
Read more...