Fedora Linux Support Community & Resources Center
  #1  
Old 30th September 2012, 03:31 PM
orioncaspar's Avatar
orioncaspar Offline
Registered User
 
Join Date: Nov 2011
Posts: 8
linuxfirefox
Question how to change the default wallpaper in fedora remix?

I'm trying to create a fedora remix. But, the problem is I don't like the fedora's default logo. So, I want to change the default wallpaper while creating the remix. How to do that? Do I have to insert any code inside the kickstart (.ks) file? If yes, what do I insert?

I also want to change the default login theme and splash screen. What do I have to insert in the .ks file?

Please, I need some serious help.
__________________
Registered Linux user #531213
Registered Linux machine #432390

AMD Phenom II 945 X4 3.0GHz | ATI Radeon HD 4950+ 1GB DDR3 | Corsair 4GB DDR3 1600MHz | WD Caviar 2TB SATA II
Reply With Quote
  #2  
Old 30th September 2012, 08:41 PM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,602
windows_7chrome
Re: how to change the default wallpaper in fedora remix?

AFAIK, all customisations MUST be done in the KS %pre or %post (not sure which) section.
The code would be 'normal shell commands'.

---------- Post added at 07:41 PM ---------- Previous post was at 05:36 PM ----------

Which is pretty tricky with GDM, if you choose LXDM or SLiM as Loginmanager you can simply manipulate /etc/slim.conf or /etc/lxdm/lxdm.conf respectivly.
Or you could add your wallpapers, in a sub-folder in: /usr/share/backgrounds/, and do a symlink to /usr/share/backgrounds/default.png

Attention, both changes should be done in chroot or another work around, in either one (dont sure wich) of the above stated section.

Hope this helps.
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb
Reply With Quote
  #3  
Old 1st October 2012, 07:21 PM
orioncaspar's Avatar
orioncaspar Offline
Registered User
 
Join Date: Nov 2011
Posts: 8
windows_7chrome
Re: how to change the default wallpaper in fedora remix?

Quote:
Originally Posted by sea View Post
AFAIK, all customisations MUST be done in the KS %pre or %post (not sure which) section.
The code would be 'normal shell commands'.

---------- Post added at 07:41 PM ---------- Previous post was at 05:36 PM ----------

Which is pretty tricky with GDM, if you choose LXDM or SLiM as Loginmanager you can simply manipulate /etc/slim.conf or /etc/lxdm/lxdm.conf respectivly.
Or you could add your wallpapers, in a sub-folder in: /usr/share/backgrounds/, and do a symlink to /usr/share/backgrounds/default.png

Attention, both changes should be done in chroot or another work around, in either one (dont sure wich) of the above stated section.

Hope this helps.
Thanks for the reply, I have already added a few commands under %post section for some other customization. But can you tell me exactly what I have to write under %post section to solve my problem? I just want to know the command string.
__________________
Registered Linux user #531213
Registered Linux machine #432390

AMD Phenom II 945 X4 3.0GHz | ATI Radeon HD 4950+ 1GB DDR3 | Corsair 4GB DDR3 1600MHz | WD Caviar 2TB SATA II
Reply With Quote
  #4  
Old 1st October 2012, 11:36 PM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,602
linuxchrome
Re: how to change the default wallpaper in fedora remix?

Edited via Netbook...
Code:
#
#	Description:
#	Copy other images to the additionaly
#	to the default background images.
#
#	Overwrite existing symlink to default.png
#	with a previously copied custom image.
#
#
#	Variables
#
	chroot=/mnt/sysimage			# The "rootdir" of the future system
	label=spinname				# Used as folder name
	src=/home/$USER/Pictures/$label		# Where your backgrounds reside localy
	dest=$chroot/usr/share/backgrounds/$label # Where they will have to be copied to
#
#	Action
#
	test ! -d $dest && mkdir -p $dest	# Verify destination exists
	cp $src/* $dest/ 			# Copy all files inside $src
	cd $(dirname $dest)			# change to /mnt/usr/share/backgrounds
	ln -s ./$label/file ./default.png	# Recursivly symlink the files properly
Hope this helps
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb

Last edited by sea; 2nd October 2012 at 12:53 AM.
Reply With Quote
  #5  
Old 4th October 2012, 06:44 AM
orioncaspar's Avatar
orioncaspar Offline
Registered User
 
Join Date: Nov 2011
Posts: 8
linuxfirefox
Re: how to change the default wallpaper in fedora remix?

As per your suggestion, I did as the following, but no help.
I renamed a wallpaper as 'default.png' and put it at the directory /root/Pictures/MyOS

Code:
#	Variables
#
	chroot=/mnt/sysimage			# The "rootdir" of the future system
	label=MyOS				# Used as folder name
	src=/root/Pictures/$label		# Where your backgrounds reside localy
	dest=$chroot/usr/share/backgrounds/$label # Where they will have to be copied to
#
#	Action
#
	test ! -d $dest && mkdir -p $dest	# Verify destination exists
	cp $src/* $dest/ 			# Copy all files inside $src
	cd $(dirname $dest)			# change to /mnt/usr/share/backgrounds
	ln -s ./$label/file ./default.png	# Recursivly symlink the files properly
__________________
Registered Linux user #531213
Registered Linux machine #432390

AMD Phenom II 945 X4 3.0GHz | ATI Radeon HD 4950+ 1GB DDR3 | Corsair 4GB DDR3 1600MHz | WD Caviar 2TB SATA II
Reply With Quote
  #6  
Old 4th October 2012, 06:53 AM
sea's Avatar
sea Offline
"Shells" (of a sub world)
 
Join Date: May 2011
Location: Helvetic Federation (Swissh)
Age: 33
Posts: 2,602
linuxchrome
Re: how to change the default wallpaper in fedora remix?

EDIT: Oh, sorry for mis information, i thought it would work that way, but it doesnt.
__________________
Fedora Manual: http://docs.fedoraproject.org
Script-Tools: https://sourceforge.net/projects/script-tools/
sudo st tweak repo toggle fedora-rawhide ; st iso dl-fed -respin && st iso usb

Last edited by sea; 4th October 2012 at 08:17 AM.
Reply With Quote
Reply

Tags
change, default, fedora, remix, wallpaper

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Default wallpaper beavenburt Using Fedora 6 20th July 2010 11:23 AM
Will you keep the F10 default wallpaper? wvn Fedora Focus 32 7th December 2008 03:17 PM
Appearance/ Theme Wallpaper Change fedora core 8 rakeshgupta Using Fedora 2 30th August 2008 09:24 PM
FC5 default wallpaper svg laiseng Using Fedora 0 10th April 2006 04:05 PM
change default install wallpaper in source Hillbilly Using Fedora 3 10th May 2004 08:28 PM


Current GMT-time: 22:15 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat