Re: [Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-19 Thread Binh Nguyen
On Sat, 18 Jun 2011 11:11:20 -0500 Robby Workman rwork...@slackbuilds.org wrote: On Sat, 18 Jun 2011 17:05:01 +0700 Binh Nguyen binhngu...@fastmail.fm wrote: On Sat, 18 Jun 2011 09:36:02 +0200 Nicolas Kovacs i...@microlinux.fr wrote: Hi, [...] mkdir -p $PKG/etc/skel cat

[Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-18 Thread Nicolas Kovacs
Hi, I'm an Austrian IT consultant (big word for saying that I run a one-man-company specialized in installing SOHO networks for small town halls, schools, public libraries and the likes, based 100% on GNU/Linux and FOSS) living in Montpezat, a small and sunny village in South France. I made

Re: [Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-18 Thread Audrius Kažukauskas
Welcome back to Slackware! On Sat, 2011-06-18 at 09:36:02 +0200, Nicolas Kovacs wrote: 3) Now here comes the point where I reach my limit of competence. I'm trying to package my default user profile. I'm writing a SlackBuild script for this, and right now, I wonder how to define that symlink.

Re: [Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-18 Thread Binh Nguyen
On Sat, 18 Jun 2011 09:36:02 +0200 Nicolas Kovacs i...@microlinux.fr wrote: Hi, [...] mkdir -p $PKG/etc/skel cat $CWD/gtkrc $PKG/etc/skel/.gtkrc-2.0 chmod 0644 $PKG/etc/skel/.gtkrc-2.0 But how could I have something similar with the symlink? Any suggestions? Niki If I understand

Re: [Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-18 Thread Nicolas Kovacs
Le 18/06/2011 12:05, Binh Nguyen a écrit : If I understand correctly, in this your package, you want to create a symlink to gtkrc of the package oxygen-gtk. Then this would suffice: mkdir -p $PKG/etc/skel cd $PKG/etc/skel ln -s ../../usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc .gtkrc-2.0 cd -

Re: [Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-18 Thread Robby Workman
On Sat, 18 Jun 2011 17:05:01 +0700 Binh Nguyen binhngu...@fastmail.fm wrote: On Sat, 18 Jun 2011 09:36:02 +0200 Nicolas Kovacs i...@microlinux.fr wrote: Hi, [...] mkdir -p $PKG/etc/skel cat $CWD/gtkrc $PKG/etc/skel/.gtkrc-2.0 chmod 0644 $PKG/etc/skel/.gtkrc-2.0 But how could

Re: [Slackbuilds-users] Introduction questions about link creation for the 'oxygen-gtk' theme

2011-06-18 Thread Nicolas Kovacs
Le 18/06/2011 18:11, Robby Workman a écrit : I'm curious why you don't just set the systemwide gtkrc though at /etc/gtk-2.0/gtkrc to that. Hi Robbie! Short answer: because I didn't know I could do it :o) Thanks for the precious bit of information, I'll change my script accordingly. Also