Re: Dot files, get them out of the way

2013-07-10 Thread Ralf Mardorf
On Tue, 2013-07-09 at 22:13 -0400, david...@ling.ohio-state.edu wrote: > i would expect > > $ HOME=/mnt/music gedit > > to do what you want. And you are right :). Thank you! $ echo $HOME /home/rocketmouse $ HOME=/mnt/music gedit $ echo $HOME /home/rocketmouse $ ls -hAl /mnt/music/ | grep

Re: Dot files, get them out of the way

2013-07-09 Thread davidson
hi ralf. On Tue, 9 Jul 2013, Ralf Mardorf wrote: On Tue, 2013-07-09 at 04:44 -0400, shawn wilson wrote: You could probably do: su -l $USER HOME=$HOME/$app $app Hi Shawn, that's great, thank you very much! I can add this to my next audio session scripts, so no searching for hidden configs an

Re: Dot files, I did get them out of the way

2013-07-09 Thread Wilko Fokken
On Mon, Jul 08, 2013 at 04:55:55PM +0200, ha wrote: > Thanks Ralph, I guess it would do it. > But I didn't plan to separate the conf files completely, I was hoping > for a solution more alike Wilko's (if it works). Moin mitnanner, my solutions via shellscripts work pretty well since about ten

Re: Dot files, get them out of the way

2013-07-09 Thread ha
On 07/09/2013 03:53 PM, ha wrote: On 07/09/2013 12:24 PM, Ralf Mardorf wrote: su -l $USER HOME=$HOME/$app $app ... [rocketmouse@archlinux ~]$ su -l $USER HOME=/mnt/music/ gedit Am I reading this correctly? Shouldn't it be: su -l $USER HOME=/mnt/music/gedit gedit No. This doesn't make sense

Re: Dot files, get them out of the way

2013-07-09 Thread ha
On 07/09/2013 12:24 PM, Ralf Mardorf wrote: su -l $USER HOME=$HOME/$app $app ... [rocketmouse@archlinux ~]$ su -l $USER HOME=/mnt/music/ gedit Am I reading this correctly? Shouldn't it be: su -l $USER HOME=/mnt/music/gedit gedit -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.o

Re: Dot files, get them out of the way

2013-07-09 Thread Ralf Mardorf
On Tue, 2013-07-09 at 04:44 -0400, shawn wilson wrote: > You could probably do: > su -l $USER HOME=$HOME/$app $app Hi Shawn, that's great, thank you very much! I can add this to my next audio session scripts, so no searching for hidden configs anymore, for apps that don't allow to set a path by t

Re: Dot files, get them out of the way

2013-07-09 Thread shawn wilson
You could probably do: su -l $USER HOME=$HOME/$app $app (untested) Also maybe see about wrapping what you need (probably tons of app specific mojo) around fakeroot or even use fakeroot and schroot to bring in only what you need (love the idea for services and browsers but not for this problem). Al

Re: Dot files, get them out of the way

2013-07-08 Thread Ralf Mardorf
On Mon, 2013-07-08 at 14:28 -0600, Matthew Moore wrote: > Arch had a package called "libetc" that did exactly what you want, but > its been unmaintained for years now. Someone forked it, though, and > people on the Arch forums seem to have it working: > > https://github.com/sloonz/rewritefs > > I

Re: Dot files, get them out of the way

2013-07-08 Thread Matthew Moore
On 2013-07-08, Kelly Clowers wrote: > On Mon, Jul 8, 2013 at 7:55 AM, ha wrote: > > Thanks Ralph, I guess it would do it. > > But I didn't plan to separate the conf files completely, I was hoping for a > > solution more alike Wilko's (if it works). > > After all we all have .config file in our hom

Re: Dot files, get them out of the way

2013-07-08 Thread Kelly Clowers
On Mon, Jul 8, 2013 at 7:55 AM, ha wrote: > Thanks Ralph, I guess it would do it. > But I didn't plan to separate the conf files completely, I was hoping for a > solution more alike Wilko's (if it works). > After all we all have .config file in our home directory. > It makes sense that all applica

Re: Dot files, get them out of the way

2013-07-08 Thread ha
Thanks Ralph, I guess it would do it. But I didn't plan to separate the conf files completely, I was hoping for a solution more alike Wilko's (if it works). After all we all have .config file in our home directory. It makes sense that all applications write their conf files there, instead "rand

Re: Dot files, get them out of the way

2013-07-08 Thread Ralf Mardorf
On Mon, 2013-07-08 at 15:04 +0200, Ralf Mardorf wrote: > On Mon, 2013-07-08 at 14:44 +0200, ha wrote: > > Would you care to explain how to accomplish that setup? > > It would be nice to have only one file that contains configuration (like > > etc/, let's say .conf/) and not to have to search troug

Re: Dot files, get them out of the way

2013-07-08 Thread Ralf Mardorf
On Mon, 2013-07-08 at 14:44 +0200, ha wrote: > Would you care to explain how to accomplish that setup? > It would be nice to have only one file that contains configuration (like > etc/, let's say .conf/) and not to have to search trough two dozens of > dot files every time I click on the "Browse"

Re: Dot files, get them out of the way

2013-07-08 Thread ha
Would you care to explain how to accomplish that setup? It would be nice to have only one file that contains configuration (like etc/, let's say .conf/) and not to have to search trough two dozens of dot files every time I click on the "Browse" button in whatever application - just to find docu

Re: Dot files, get them out of the way

2013-07-08 Thread Brad Rogers
On Mon, 8 Jul 2013 12:42:55 +0200 Wilko Fokken wrote: Hello Wilko, >As a (private) text prone Debian user, I like having my dot files >out of the way and not stumbling between my working files. What dot files? Ones you've created, or those that are generated by apps you use? If the latter, mo

Re: Dot files, get them out of the way

2013-07-08 Thread Ralf Mardorf
On Mon, 2013-07-08 at 12:57 +0100, Tony van der Hoff wrote: > So, leave them in $HOME, and create directories such as $HOME/work; > $HOME/documents Or even keep the hidden files in $HOME but instead of adding $HOME/work, HOME/documents, add /home/work, /home/documents or /mnt/work etc.. FWIW I've

Re: Dot files, get them out of the way

2013-07-08 Thread Tony van der Hoff
On 08/07/13 11:42, Wilko Fokken wrote: > Moin mitnanner, > > As a (private) text prone Debian user, I like having my dot files > out of the way and not stumbling between my working files. > > On the other hand, I dislike hiding them by file managers, > because I want to discover them early at pos

Re: Dot files, get them out of the way

2013-07-08 Thread staticsafe
On Mon, Jul 08, 2013 at 12:42:55PM +0200, Wilko Fokken wrote: > Moin mitnanner, > > As a (private) text prone Debian user, I like having my dot files > out of the way and not stumbling between my working files. > > On the other hand, I dislike hiding them by file managers, > because I want to dis

Re: dot files

1998-07-24 Thread Shaleh
If you must get gimp to show a dotfile (or directory) just type '.' in the file blank and hit 'tab'. GIMP (and all GTK apps) work like bash does. Tab gives file completion. -- Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null

Re: dot files

1998-07-24 Thread Richard L. Alhama
On Fri, 24 Jul 1998, Shaleh wrote: > What dotfiles should GIMP be seeing? .directories > As for a book, there a lots of good UNIX books. Any "Teach yourself > UNIX" type book will work. Linux is fairly standardized. Also, Debian > is working on some new user docs. Might want to subscribe to

Re: dot files

1998-07-24 Thread Richard L. Alhama
On Fri, 24 Jul 1998, Will Lowe wrote: > > How can I make GIMP show dotfiles? > I think this is a gtk-wide thing ... not sure how to go about fix it, but > all my gtk-using apps don't show dotfiles. > > > I should get a book can someone recommend a good one? Not linux for > > dummies please. > I

Re: dot files

1998-07-24 Thread Will Lowe
> What dotfiles should GIMP be seeing? The gtk file selection dialogs don't show _any_ file or directory that starts with a dot, in any gtk-enabled app. Will -- |

Re: dot files

1998-07-24 Thread Shaleh
What dotfiles should GIMP be seeing? As for a book, there a lots of good UNIX books. Any "Teach yourself UNIX" type book will work. Linux is fairly standardized. Also, Debian is working on some new user docs. Might want to subscribe to debian-docs and see what they have to say. The /usr/doc/H

Re: dot files

1998-07-24 Thread Will Lowe
> How can I make GIMP show dotfiles? I think this is a gtk-wide thing ... not sure how to go about fix it, but all my gtk-using apps don't show dotfiles. > I should get a book can someone recommend a good one? Not linux for > dummies please. If you're not a unix person, try "Running Linux" by M