From Fedora Project Wiki
m (1 revision(s))
m (→‎Installation: Fixed links and structure)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
<!--
{{header|art}}
-->
<!-- language:en
-->
<!--
-->
<!-- Pull Header from Artwork
-->
{{:Artwork, , from="StartHeader", to="EndHeader"}}
 
{| style="width:98%" style="text-align:left; padding:0px; border:0; width:50px;"
|}


<pre>
<pre>
Line 27: Line 16:
=== Installation ===
=== Installation ===


The completed image should be named ''''system-logo.png'''' and must reside in the ''''/usr/share/rhgb/'''' folder. My desire is to remove this image from the theme and the [[InstallScript|  RemoveSystemLogoImage]] .sh accomplishes this task. The ~+<code>InstallSystemLogoImage.sh</code>+~ script will re-install the original image.
The completed image should be named ''''system-logo.png'''' and must reside in the ''''/usr/share/rhgb/'''' folder. My desire is to remove this image from the theme and the [[#InstallScript|  RemoveSystemLogoImage]].sh accomplishes this task. The ~+<code>InstallSystemLogoImage.sh</code>+~ script will re-install the original image.


1. Download the following files <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;[[Image:Artwork_ArtTeamProjects_Fedora7Remix_Rhgb_SystemLogo_RemoveSystemLogoImage.sh]] <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;[[Image:Artwork_ArtTeamProjects_Fedora7Remix_Rhgb_SystemLogo_InstallSystemLogoImage.sh]]
# Download the following files
2. Open a terminal session and login as root <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;ie. $ '''su''' <return>
#* [[Image:Artwork_ArtTeamProjects_Fedora7Remix_Rhgb_SystemLogo_RemoveSystemLogoImage.sh]]
3. Navigate to the folder containing the above files <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;ie. # '''cd myDownloads'''
#* [[Image:Artwork_ArtTeamProjects_Fedora7Remix_Rhgb_SystemLogo_InstallSystemLogoImage.sh]]
4. Execute [[InstallScript|  RemoveSystemLogoImage]] .sh script <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;ie. # '''sh [[InstallScript|  RemoveSystemLogoImage]] .sh''' <return>
# Open a terminal session and login as root
6. Respond <y> when asked "Proceed y/N?" <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;ie. Proceed y/N? '''y''' <return>
#* ie. $ '''su''' <return>
7. Close terminal window when script is done <BR>&nbsp;&nbsp;&#9656;&nbsp;&nbsp;ie. "All done ..."
# Navigate to the folder containing the above files
#* ie. # '''cd myDownloads'''
# Execute [[#InstallScript|  RemoveSystemLogoImage]].sh script
#* ie. # '''sh [[#InstallScript|  RemoveSystemLogoImage]].sh''' <return>
# Respond <y> when asked "Proceed y/N?"
#* ie. Proceed y/N? '''y''' <return>
# Close terminal window when script is done
#* ie. "All done ..."


Reboot your computer to view the changes.
Reboot your computer to view the changes.

Latest revision as of 17:29, 29 May 2008

Artwork ArtTeamProjects WikiDesign ArtTeamN1.png


Under construction

General

File:Artwork ArtTeamProjects Fedora7Remix Rhgb SystemLogo system-logo.png

This part of the current theme is simply branding. If your desire is to use this space the dimensions of the artwork needs to be 183 x 45 pixels. Placement of the image will be in the lower right hand corner of the screen. Another option is to simply omit it. This was my desire as I felt the branding was too much and placed the overall screen out of balance.

File:Artwork ArtTeamProjects Fedora7Remix Rhgb SystemLogo SystemLogoMockup.png


Installation

The completed image should be named 'system-logo.png' and must reside in the '/usr/share/rhgb/' folder. My desire is to remove this image from the theme and the RemoveSystemLogoImage.sh accomplishes this task. The ~+InstallSystemLogoImage.sh+~ script will re-install the original image.

  1. Download the following files
  2. Open a terminal session and login as root
    • ie. $ su <return>
  3. Navigate to the folder containing the above files
    • ie. # cd myDownloads
  4. Execute RemoveSystemLogoImage.sh script
  5. Respond <y> when asked "Proceed y/N?"
    • ie. Proceed y/N? y <return>
  6. Close terminal window when script is done
    • ie. "All done ..."

Reboot your computer to view the changes.


~+Installation Script+~


#!/bin/bash
#
#
#
clear
echo
echo "      #####                     ##"
echo "     ###                        ##"
echo "     ###                        ##"
echo "   ########   ######     ###### ##     #######    ### ###   #######"
echo "     ###    ###    ###  ###    ###   ###    ###   ####    ###     ###"
echo "     ###    ##########  ###     ##   ###     ###  ###     ###     ###"
echo "     ###    ###         ###    ###   ###    ###   ###     ###     ###"
echo "     ###     ########    ###### ##    ########    ###       ###### ##"
echo
echo "                     RHGB System-logo Image Removal"
echo
echo
echo

if [ "$UID" -ne "0" ] 
then
echo
echo "Sorry, this script must be run as root (su)."
echo
exit 1
fi

echo -n "Proceed y/N? "
read ans

case $ans in
"y" | "Y" )
;;
* )
echo
echo "Thank you :)"
echo
exit;;
esac

#
#
if [ ! -r "/usr/share/rhgb/system-logo.png.sav" ] 
then
echo
echo "Copying current image to (system-logo.png.sav) ..."
cp /usr/share/rhgb/system-logo.png /usr/share/rhgb/system-logo.png.sav
fi

#
#
rm /usr/share/rhgb/system-logo.png

echo
echo "Done ..."
echo