Starting VLC from command line always puts the window behind other windowsHow to make Chrome open a new window for external LinksTask Switching with the KeyboardHow I can unminimize windows from an application using a key combination?how to get Finder to automatically open a Finder window / or always keep one open?How to switch to windows that dont belong to any running application?How to make CMD+Tab show current windowCMD + Tab from fullscreen app switches to wrong applicationSwitching between merged windows (tabs) of the same applicationWindow moved after wake up from sleepAny “Always On Top” app working on Mojave?
The best in flight meal option for those suffering from reflux
Is fission/fusion to iron the most efficient way to convert mass to energy?
How can I detect if I'm in a subshell?
Can I get a photo of an Ancient Arrow?
Past vs. present tense when referring to a fictional character
Is all-caps blackletter no longer taboo?
Was the Lonely Mountain, where Smaug lived, a volcano?
Do the Shadow Magic sorcerer's Strength of the Grave feature and the half-orc's Relentless Endurance trait work together?
How long would it take for sucrose to undergo hydrolysis in boiling water?
Why are backslashes included in this shell script?
Realistic, logical way for men with medieval-era weaponry to compete with much larger and physically stronger foes
Why not make one big cpu core?
Do Veracrypt encrypted volumes have any kind of brute force protection?
Can a 40amp breaker be used safely and without issue with a 40amp device on 6AWG wire?
Does an African-American baby born in Youngstown, Ohio have a higher infant mortality rate than a baby born in Iran?
Fastest way from 10 to 1 with everyone in between
Is it ethical to cite a reviewer's papers even if they are rather irrelevant?
Does WiFi affect the quality of images downloaded from the internet?
Is it possible to have battery technology that can't be duplicated?
Nth term of Van Eck Sequence
Background for black and white chart
What's the reason for the decade jump in the recent X-Men trilogy?
Integrate without expansion?
New Site Design!
Starting VLC from command line always puts the window behind other windows
How to make Chrome open a new window for external LinksTask Switching with the KeyboardHow I can unminimize windows from an application using a key combination?how to get Finder to automatically open a Finder window / or always keep one open?How to switch to windows that dont belong to any running application?How to make CMD+Tab show current windowCMD + Tab from fullscreen app switches to wrong applicationSwitching between merged windows (tabs) of the same applicationWindow moved after wake up from sleepAny “Always On Top” app working on Mojave?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
If I start VLC from Finder, the windows shows up on top. But if I start VLC from the command line using vlc
command (using either Terminal or iTerm2), the VLC window is never shows up on top. I have to use Command + Tab to switch to it. This is very annoying. Does anyone know how to fix it?
Btw, I don't want to make VLC always on top of other windows. But it should get focused (on top) when it starts.
window-manager vlc
add a comment |
If I start VLC from Finder, the windows shows up on top. But if I start VLC from the command line using vlc
command (using either Terminal or iTerm2), the VLC window is never shows up on top. I have to use Command + Tab to switch to it. This is very annoying. Does anyone know how to fix it?
Btw, I don't want to make VLC always on top of other windows. But it should get focused (on top) when it starts.
window-manager vlc
Are you using the commandvlc
just to launch the player or are also passing command line arguments to it?
– Nimesh Neema
May 29 at 15:08
@NimeshNeema Thanks a lot for the reply. Well, ifvlc file.mp4
is considering an argument, then both. Either way, VLC will not start on top. To clarify,vlc
andvlc file.mp4
both will put VLC window on bottom. They have the same behavior.
– sgon00
May 29 at 15:11
add a comment |
If I start VLC from Finder, the windows shows up on top. But if I start VLC from the command line using vlc
command (using either Terminal or iTerm2), the VLC window is never shows up on top. I have to use Command + Tab to switch to it. This is very annoying. Does anyone know how to fix it?
Btw, I don't want to make VLC always on top of other windows. But it should get focused (on top) when it starts.
window-manager vlc
If I start VLC from Finder, the windows shows up on top. But if I start VLC from the command line using vlc
command (using either Terminal or iTerm2), the VLC window is never shows up on top. I have to use Command + Tab to switch to it. This is very annoying. Does anyone know how to fix it?
Btw, I don't want to make VLC always on top of other windows. But it should get focused (on top) when it starts.
window-manager vlc
window-manager vlc
edited May 29 at 14:57
Nimesh Neema
20.5k85186
20.5k85186
asked May 29 at 14:37
sgon00sgon00
45012
45012
Are you using the commandvlc
just to launch the player or are also passing command line arguments to it?
– Nimesh Neema
May 29 at 15:08
@NimeshNeema Thanks a lot for the reply. Well, ifvlc file.mp4
is considering an argument, then both. Either way, VLC will not start on top. To clarify,vlc
andvlc file.mp4
both will put VLC window on bottom. They have the same behavior.
– sgon00
May 29 at 15:11
add a comment |
Are you using the commandvlc
just to launch the player or are also passing command line arguments to it?
– Nimesh Neema
May 29 at 15:08
@NimeshNeema Thanks a lot for the reply. Well, ifvlc file.mp4
is considering an argument, then both. Either way, VLC will not start on top. To clarify,vlc
andvlc file.mp4
both will put VLC window on bottom. They have the same behavior.
– sgon00
May 29 at 15:11
Are you using the command
vlc
just to launch the player or are also passing command line arguments to it?– Nimesh Neema
May 29 at 15:08
Are you using the command
vlc
just to launch the player or are also passing command line arguments to it?– Nimesh Neema
May 29 at 15:08
@NimeshNeema Thanks a lot for the reply. Well, if
vlc file.mp4
is considering an argument, then both. Either way, VLC will not start on top. To clarify, vlc
and vlc file.mp4
both will put VLC window on bottom. They have the same behavior.– sgon00
May 29 at 15:11
@NimeshNeema Thanks a lot for the reply. Well, if
vlc file.mp4
is considering an argument, then both. Either way, VLC will not start on top. To clarify, vlc
and vlc file.mp4
both will put VLC window on bottom. They have the same behavior.– sgon00
May 29 at 15:11
add a comment |
1 Answer
1
active
oldest
votes
If you wish to use command-line to:
- open a media file with VLC player
or
- simply launch VLC player
simply execute the following in the terminal emulator of your choice, respectively for above cases:
open file.mp4 -a VLC
open -a VLC
where file.mp4
is the media file that you wish to open.
This will always cause the VLC media player window to show on top.
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you wish to use command-line to:
- open a media file with VLC player
or
- simply launch VLC player
simply execute the following in the terminal emulator of your choice, respectively for above cases:
open file.mp4 -a VLC
open -a VLC
where file.mp4
is the media file that you wish to open.
This will always cause the VLC media player window to show on top.
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
add a comment |
If you wish to use command-line to:
- open a media file with VLC player
or
- simply launch VLC player
simply execute the following in the terminal emulator of your choice, respectively for above cases:
open file.mp4 -a VLC
open -a VLC
where file.mp4
is the media file that you wish to open.
This will always cause the VLC media player window to show on top.
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
add a comment |
If you wish to use command-line to:
- open a media file with VLC player
or
- simply launch VLC player
simply execute the following in the terminal emulator of your choice, respectively for above cases:
open file.mp4 -a VLC
open -a VLC
where file.mp4
is the media file that you wish to open.
This will always cause the VLC media player window to show on top.
If you wish to use command-line to:
- open a media file with VLC player
or
- simply launch VLC player
simply execute the following in the terminal emulator of your choice, respectively for above cases:
open file.mp4 -a VLC
open -a VLC
where file.mp4
is the media file that you wish to open.
This will always cause the VLC media player window to show on top.
edited May 29 at 15:32
answered May 29 at 15:18
Nimesh NeemaNimesh Neema
20.5k85186
20.5k85186
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
add a comment |
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
yeah, that works.. vlc has its own command line. I thought I won't need to create a shell script for this purpose, but I was wrong. I will write a script then. Thanks a lot again.
– sgon00
May 29 at 15:32
add a comment |
Are you using the command
vlc
just to launch the player or are also passing command line arguments to it?– Nimesh Neema
May 29 at 15:08
@NimeshNeema Thanks a lot for the reply. Well, if
vlc file.mp4
is considering an argument, then both. Either way, VLC will not start on top. To clarify,vlc
andvlc file.mp4
both will put VLC window on bottom. They have the same behavior.– sgon00
May 29 at 15:11