directories at the top ??

2018-08-28 Thread ToddAndMargo
Hi All, Fedora 28, x64 Xfce 4.12 I have noticed lately when opening and saving files, that my folders (directories) are mixed in with my files in alphabetical order. This annoys the snot out of me. Is there a way to tell them to put the folders at the top like it use to do? Many thanks, -T __

Re: NetworkManager, Avahi, WiFi v Wired priority

2018-08-28 Thread Thomas Letherby
On Tue, Aug 28, 2018 at 8:09 PM Gabriel Ramirez wrote: > On 08/27/2018 02:31 PM, Chris Murphy wrote: > > Hi, > > > > Summary: What I want is, for a Fedora 28 Server (Intel NUC) to always > > prefer using wired connection if available, and fallback on wifi; not > > just for outgoing connections bu

Re: NetworkManager, Avahi, WiFi v Wired priority

2018-08-28 Thread Gabriel Ramirez
On 08/27/2018 02:31 PM, Chris Murphy wrote: Hi, Summary: What I want is, for a Fedora 28 Server (Intel NUC) to always prefer using wired connection if available, and fallback on wifi; not just for outgoing connections but also when I do 'ssh chris@f28s.local'. There is one AP/router that serves

Re: Time -

2018-08-28 Thread Cameron Simpson
On 28Aug2018 14:27, Doug H. wrote: A "trick" I like to use in any command scripts I write is to have them tell me how to use them if I run them without any perimeters. Here is how that works, just need to add the line to play the sound file: #!/bin/sh if [ $# -lt 1 ];then echo echo "This scri

Re: Time -

2018-08-28 Thread Doug H.
On Tue, 2018-08-28 at 15:06 -0400, Bob Goodwin wrote: > On 08/28/18 14:06, Tom Horsley wrote: > > On Tue, 28 Aug 2018 13:36:11 -0400 > > Bob Goodwin wrote: > > > > > I would be happy typing a line inxterm that would run aplay > > > some.wav at > > > the end of the period. Can anyone tell me how to

Re: Time -

2018-08-28 Thread Bob Goodwin
On 08/28/18 14:06, Tom Horsley wrote: On Tue, 28 Aug 2018 13:36:11 -0400 Bob Goodwin wrote: I would be happy typing a line inxterm that would run aplay some.wav at the end of the period. Can anyone tell me how to do that? Just in a terminal, this should work: sleep 600 ; aplay some.wav That

Re: Time -

2018-08-28 Thread Tom Horsley
On Tue, 28 Aug 2018 13:36:11 -0400 Bob Goodwin wrote: > I would be happy typing a line inxterm that would run aplay some.wav at > the end of the period. Can anyone tell me how to do that? Just in a terminal, this should work: sleep 600 ; aplay some.wav That will sleep for 600 seconds then play

Re: Time -

2018-08-28 Thread JD
Bob!!! There are MANY ways to do this on a computer. One such simple way is first convert the duration you are thinking of to seconds, then issue this command to your shell sleep xx # where xx is the number of seconds aplay On 08/28/2018 11:36 AM, Bob Goodwin wrote: In the past if

Time -

2018-08-28 Thread Bob Goodwin
In the past if I wanted to time a process in the darkroom or the kitchen I had a wind up timer, twist the dial to 27 minutes or whatever I wanted and a bell would ring when that time had elapsed. Certainly by today a Fedora computer should be able to do that basic task forme. I would be happy