Re: Another GNU/Linux Video Extravaganza!

Liste des GroupesRevenir à ol advocacy 
Sujet : Re: Another GNU/Linux Video Extravaganza!
De : ronb02NOSPAM (at) *nospam* gmail.com (RonB)
Groupes : comp.os.linux.advocacy
Date : 26. May 2024, 14:53:54
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v2vbd2$3do2m$1@dont-email.me>
References : 1 2
User-Agent : slrn/1.0.3 (Linux)
On 2024-05-25, Stéphane CARPENTIER <sc@fiat-linux.fr> wrote:
Le 25-05-2024, Diego Garcia <dg@chaos.rocks> a écrit :
>
colavid.mp4
>
Once again, thanks for the good laugh (in the beginning, I didn't looked
at everything because it becomes boring). With this video, you proved,
once again, that I'm ten times faster than you.
>
First, when you are writing the name of a directory in your terminal,
you should use your [TAB] key: it's faster and it would avoid you to
misspell it (and the need to write it a second time).
>
Second, why do you use a terminal to launch GUI applications? I know,
it's because you are unable to configure your menu. It shows because it
takes you forever to find your applications in it. You should learn how
to configure it.
>
I never launch a GUI program from a terminal because it's inefficient.
When you do it, you show me how I'm right about it.
>
When you launch your GUI applications from the terminal, you have two
issues. And that takes forever. The first one is you need to move it on
another workspace, you do it with your mouse and it's slow (and when you
loose the focus and interact with another application, it's fun to see
how you struggle to do basic things). And second, when your application
is on your right workspace, you need to resize it. Which takes you
forever a second time.
>
When you launch something every day, it should be very fast and your way
is very slow. I don't need a mouse driven menu, but for a GUI lackey
like you, you should configure it to suit your needs and to be
efficient.
>
You would have the support of the -highthorse here because he will say
that the professional designers who provided you the menu know better
than you how you should use your computer. But he's a brain dead moron
unable to see how your use of tools designed by others is inefficient,
so it doesn't count.

I don't use the mouse to launch GUI applications from the terminal. If I
want to open a Trelby document (as an example) I do the following.

Shift-Control-M to open a terminal

. trel _name_

And I'm editing my file.

If I don't know the name of the document I want to edit, I run...

lst trel

...and all my Trelby documents are listed.

If I want to start a new document...

. trel _newname_

And I'm editing the document.

trel shell script

#!/bin/bash
clear
trelby ~/Documents/scripts/$1.trelby 2>/dev/null &
exit

The lst script is relatively long because I use it for several different
file extensions (some with more than one option and some in specific
directories).

case $1 in
   txt)
     echo "--------------------"
     ls *.txt
     echo "--------------------"
     ;;
   ltxt)
     echo "--------------------"
     ls -tl *.txt
     echo "--------------------"
     ;;  
   n)
     echo "--------------------"
     ls -pB | grep -v \. | grep -v /
     echo "--------------------"
     ;;
   pdf)
     echo "--------------------"
     ls *.pdf
     echo "--------------------"
     ;;
   lpdf)
     echo "--------------------"
     ls -tlr *.pdf
     echo "--------------------"
     ;;  
   trel)
     echo "--------------------"
     ls *.trelby
     echo "--------------------"
     ;;
   a)
     echo "--------------------"
     ls --color
     echo "--------------------"
     ;;
   fount)
     echo "--------------------"
     ls *.fountain
     echo "--------------------"
     ;;
   lfount)
     echo "--------------------"
     ls -tlr *.fountain
     echo "--------------------"
     ;;
   fdx)
     echo "--------------------"
     ls *.fdx
     echo "--------------------"
     ;;
   html)
     echo "--------------------"
     ls *.html
     echo "--------------------"
     ;;
   fade)
     echo "--------------------"
     ls -tlr *.fadein
     echo "--------------------"
     ;;
   note)
     echo "--------------------"
     cd ~/Documents/notes
     ls *.txt
     echo "--------------------"
     ;;
   doc)
     echo "--------------------"
     cd ~/Documents/docs
     ls *.txt
     echo "--------------------"
     ;;
   adoc)
     echo "--------------------"
     cd ~/Documents/html
     ls *.adoc
     echo "--------------------"
     ls *.html
     echo "--------------------"
     ;;
   d)
     echo "--------------------"
     cd ~/Documents/words
     ls *.txt
     echo "--------------------" 
     ;;
   j)
     echo "--------------------"
     cd ~/afterlabs
     ls *.json
     echo "--------------------"
     ;; 
   tel)
     echo "---------------------"
     cd ~/Documents/tel
     ls *.txt
     echo "---------------------"
     ;; 
   *)
     echo "--------------------"
     echo "No match"
     echo "--------------------"
     ;;
esac
      
--
[Self-centered, Woke] "pride is a life of self-destructive fakery, an
entrapment to a false and self-created matrix of twisted unreality."
"It was pride that changed angels into devils..."     — St. Augustine

Date Sujet#  Auteur
25 May 24 * Another GNU/Linux Video Extravaganza!129Diego Garcia
25 May 24 +* Re: Another GNU/Linux Video Extravaganza!34Stéphane CARPENTIER
26 May 24 i+* Re: Another GNU/Linux Video Extravaganza!21Farley Flud
26 May 24 ii+- Re: Another GNU/Linux Video Extravaganza!1Chris Ahlstrom
26 May 24 ii+* Re: Another GNU/Linux Video Extravaganza!16Stéphane CARPENTIER
28 May 24 iii`* Re: Another GNU/Linux Video Extravaganza!15DFS
28 May 24 iii +- Re: Another GNU/Linux Video Extravaganza!1DFS
29 May 24 iii +* Re: Another GNU/Linux Video Extravaganza!10rbowman
30 May 24 iii i+- Re: Another GNU/Linux Video Extravaganza!1rbowman
31 May 24 iii i`* Re: Another GNU/Linux Video Extravaganza!8Stéphane CARPENTIER
1 Jun 24 iii i `* Re: Another GNU/Linux Video Extravaganza!7rbowman
1 Jun 24 iii i  +* Re: Another GNU/Linux Video Extravaganza!2Joel Crump
1 Jun 24 iii i  i`- Re: Another GNU/Linux Video Extravaganza!1Chris Ahlstrom
1 Jun 24 iii i  +* Re: Another GNU/Linux Video Extravaganza!2rbowman
1 Jun 24 iii i  i`- Re: Another GNU/Linux Video Extravaganza!1Joel Crump
14 Jun 24 iii i  +- Re: Another GNU/Linux Video Extravaganza!1Stéphane CARPENTIER
14 Jun 24 iii i  `- Re: Another GNU/Linux Video Extravaganza!1Stéphane CARPENTIER
31 May 24 iii `* Re: Another GNU/Linux Video Extravaganza!3Stéphane CARPENTIER
1 Jun 24 iii  +- Re: Another GNU/Linux Video Extravaganza!1DFS
1 Jun 24 iii  `- Re: Another GNU/Linux Video Extravaganza!1rbowman
27 May 24 ii`* Re: Another GNU/Linux Video Extravaganza!3DFS
27 May 24 ii `* Re: Another GNU/Linux Video Extravaganza!2Joel
27 May 24 ii  `- Re: Another GNU/Linux Video Extravaganza!1DFS
26 May 24 i+* Re: Another GNU/Linux Video Extravaganza!4RonB
26 May 24 ii`* Re: Another GNU/Linux Video Extravaganza!3Stéphane CARPENTIER
27 May 24 ii `* Re: Another GNU/Linux Video Extravaganza!2RonB
31 May 24 ii  `- Re: Another GNU/Linux Video Extravaganza!1Stéphane CARPENTIER
26 May 24 i+* Re: Another GNU/Linux Video Extravaganza!2Chris Ahlstrom
31 May 24 ii`- Re: Another GNU/Linux Video Extravaganza!1Stéphane CARPENTIER
27 May 24 i`* Re: Another GNU/Linux Video Extravaganza!6candycanearter07
31 May 24 i `* Re: Another GNU/Linux Video Extravaganza!5Stéphane CARPENTIER
2 Jun 24 i  `* Re: Another GNU/Linux Video Extravaganza!4candycanearter07
14 Jun 24 i   `* Re: Another GNU/Linux Video Extravaganza!3Stéphane CARPENTIER
14 Jun 24 i    `* Re: Another GNU/Linux Video Extravaganza!2Farley Flud
14 Jun 24 i     `- Re: Another GNU/Linux Video Extravaganza!1Stéphane CARPENTIER
25 May 24 +* Re: Another GNU/Linux Video Extravaganza!18DFS
25 May 24 i+* Re: Another GNU/Linux Video Extravaganza!12Joel
26 May 24 ii+- Re: Another GNU/Linux Video Extravaganza!1vallor
27 May 24 ii`* Re: Another GNU/Linux Video Extravaganza!10candycanearter07
27 May 24 ii +* Re: Another GNU/Linux Video Extravaganza!4Joel
27 May 24 ii i`* Re: Another GNU/Linux Video Extravaganza!3candycanearter07
28 May 24 ii i `* Re: Another GNU/Linux Video Extravaganza!2candycanearter07
28 May 24 ii i  `- Re: Another GNU/Linux Video Extravaganza!1Joel
27 May 24 ii `* Re: Another GNU/Linux Video Extravaganza!5Andrzej Matuch
27 May 24 ii  `* Re: Another GNU/Linux Video Extravaganza!4RonB
27 May 24 ii   `* Re: Another GNU/Linux Video Extravaganza!3Andrzej Matuch
28 May 24 ii    `* Re: Another GNU/Linux Video Extravaganza!2RonB
28 May 24 ii     `- Re: Another GNU/Linux Video Extravaganza!1RonB
26 May 24 i+* Re: Another GNU/Linux Video Extravaganza!3vallor
26 May 24 ii+- Re: Another GNU/Linux Video Extravaganza!1Stéphane CARPENTIER
26 May 24 ii`- Re: Another GNU/Linux Video Extravaganza!1DFS
26 May 24 i`* Re: Another GNU/Linux Video Extravaganza!2Stéphane CARPENTIER
27 May 24 i `- Re: Another GNU/Linux Video Extravaganza!1candycanearter07
26 May 24 +- Re: Another GNU/Linux Video Extravaganza!1rbowman
27 May 24 +* Re: Another GNU/Linux Video Extravaganza!4candycanearter07
27 May 24 i`* Re: Another GNU/Linux Video Extravaganza!3DFS
28 May 24 i `* Re: Another GNU/Linux Video Extravaganza!2candycanearter07
28 May 24 i  `- Re: Another GNU/Linux Video Extravaganza!1Joel
27 May 24 +* Re: Another GNU/Linux Video Extravaganza!70rbowman
28 May 24 i`* Re: Another GNU/Linux Video Extravaganza!69RonB
28 May 24 i +* Re: Another GNU/Linux Video Extravaganza!6rbowman
28 May 24 i i+- Re: Add Joe Biden to the mix.1vallor
28 May 24 i i+- Re: Add Joe Biden to the mix.1rbowman
28 May 24 i i`* Re: Another GNU/Linux Video Extravaganza!3RonB
28 May 24 i i `* Re: Another GNU/Linux Video Extravaganza!2rbowman
29 May 24 i i  `- Re: Another GNU/Linux Video Extravaganza!1Joel
28 May 24 i `* Re: Another GNU/Linux Video Extravaganza!62RonB
28 May 24 i  `* Re: Another GNU/Linux Video Extravaganza!61RonB
28 May 24 i   +* Re: Another GNU/Linux Video Extravaganza!25Joel
28 May 24 i   i`* Re: Another GNU/Linux Video Extravaganza!24DFS
28 May 24 i   i +- Re: Another GNU/Linux Video Extravaganza!1Joel
29 May 24 i   i +- Re: Another GNU/Linux Video Extravaganza!1Joel
29 May 24 i   i +* Re: Another GNU/Linux Video Extravaganza!3RonB
29 May 24 i   i i+- Re: Another GNU/Linux Video Extravaganza!1RonB
29 May 24 i   i i`- Re: Another GNU/Linux Video Extravaganza!1Joel
30 May 24 i   i +* Re: Another GNU/Linux Video Extravaganza!17Joel
30 May 24 i   i i`* Re: Another GNU/Linux Video Extravaganza!16rbowman
30 May 24 i   i i +- Don't be absurd1vallor
30 May 24 i   i i +- Re: Another GNU/Linux Video Extravaganza!1Joel
30 May 24 i   i i +- Re: How do you feel about torturing puppies ?1Joel
30 May 24 i   i i +* Re: Another GNU/Linux Video Extravaganza!2RonB
30 May 24 i   i i i`- Re: Another GNU/Linux Video Extravaganza!1Joel
30 May 24 i   i i +* Re: Another GNU/Linux Video Extravaganza!5RonB
30 May 24 i   i i i+* Re: Another GNU/Linux Video Extravaganza!2Joel
31 May 24 i   i i ii`- Re: Another GNU/Linux Video Extravaganza!1rbowman
31 May 24 i   i i i`* Re: Another GNU/Linux Video Extravaganza!2RonB
31 May 24 i   i i i `- Re: Another GNU/Linux Video Extravaganza!1RonB
30 May 24 i   i i +- Re: How do you feel about torturing puppies ?1RonB
30 May 24 i   i i +* Re: Stockholm Syndrome.3rbowman
30 May 24 i   i i i+- Re: Stockholm Syndrome.1Chris Ahlstrom
31 May 24 i   i i i`- Re: Stalin's "Holodomor" (famine).1rbowman
30 May 24 i   i i `- Re: Stockholm Syndrome.1rbowman
30 May 24 i   i `- Re: Another GNU/Linux Video Extravaganza!1RonB
28 May 24 i   +* Re: Another GNU/Linux Video Extravaganza!4rbowman
29 May 24 i   i`* Re: Another GNU/Linux Video Extravaganza!3RonB
30 May 24 i   i `* Re: Another GNU/Linux Video Extravaganza!2rbowman
30 May 24 i   i  `- Re: Another GNU/Linux Video Extravaganza!1RonB
29 May 24 i   +* Re: Another GNU/Linux Video Extravaganza!3rbowman
30 May 24 i   i`* Re: Another GNU/Linux Video Extravaganza!2rbowman
30 May 24 i   i `- Re: Another GNU/Linux Video Extravaganza!1Joel
29 May 24 i   `* Re: Another GNU/Linux Video Extravaganza!28RonB
27 May 24 `- Re: Another GNU/Linux Video Extravaganza!1Joel

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal