~ubuntu-branches/ubuntu/trusty/fluxbox/trusty-proposed

« back to all changes in this revision

Viewing changes to theme/setup.sh

  • Committer: Package Import Robot
  • Author(s): Dmitry E. Oboukhov, Dmitry E. Oboukhov, Paul Tagliamonte
  • Date: 2010-09-08 14:53:41 UTC
  • mfrom: (0.2.1) (1.1.11)
  • Revision ID: package-import@ubuntu.com-20100908145341-mz35wshnad21ldzx
Tags: 1.1.1+git20100908.df2f51b-1
[ Dmitry E. Oboukhov ]
  * Renew old repo structure.
    Paul! To merge with upstream use 'git pull' command :)
  * Merge with upstream git-repo.
  * Renew my old Debian theme.
[ Paul Tagliamonte ]
  * Adding in a patch to fix problems with the default
    key settings. (Closes: 592904)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
cd "$(dirname "$0")"
4
 
 
5
 
echo "Checking Vendor"
6
 
dpkg-vendor --derives-from Ubuntu
7
 
if [ "0" -eq "$?" ]; then
8
 
        echo "Looks like an Ubuntu system. Using Ubuntu theme";
9
 
        cp Ubuntu/* . -r;
10
 
else
11
 
        echo "Looks like a Debian system. Using Debian theme";
12
 
        cp Debian/* . -r;
13
 
fi;