Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
phitem
Design Linux UGA
Commits
283b2560
Commit
283b2560
authored
Jun 09, 2021
by
Maxime Accadia
Browse files
Logo pour plymouth
parent
9e74a780
Changes
4
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
283b2560
...
...
@@ -14,13 +14,22 @@ clean:
rm
-rf
$(OUT)
install
:
# wallpapers
install
-d
/usr/share/backgrounds/uga
install
-m
644 jpg/
*
/usr/share/backgrounds/uga
install
-m
644 uga-slideshow.xml /usr/share/backgrounds/uga
install
-m
644 uga-wallpapers.xml
$(GNOME_BACKGROUND_PROP)
# plymouth logo
install
-m
644 logo /usr/share/initramfs-tools/conf-hooks.d
install
-m
644 logo.png /usr/share/plymouth
update-initramfs
-u
uninstall
:
rm
-rf
/usr/share/backgrounds/uga
rm
$(GNOME_BACKGROUND_PROP)
/uga-wallpapers.xml
# plymouth logo
rm
/usr/share/initramfs-tools/conf-hooks.d/logo
rm
/usr/share/plymouth/logo.png
update-initramfs
-u
$(shell
mkdir
-p
$(OUT))
README.md
View file @
283b2560
...
...
@@ -3,9 +3,12 @@
Ce dépôt contient des fonds d'écran et des éléments de design Université Grenoble Alpes
pour Linux.
##
Utilisation
##
Ce que ça fait
*
Ajoute des fonds d'écran et un diaporama dans les fonds d'écran Gnome
*
Remplace le logo Ubuntu lors du démarrage (nécessite plymouth et un thème compatible installé)
## Utilisation
Pour obtenir les fonds d'écran au format JPEG :
...
...
@@ -29,6 +32,13 @@ make
sudo
make
install
# sudo make uninstall pour désinstaller
```
## Problèmes connus
### Le logo ne s'affiche pas au démarrage
Vérifier que plymouth est installé avec un thème compatible. Le thème plymouth spinner est compatible (
`apt install plymouth-theme-spinner`
).
Si le logo du fabricant de l'ordinateur s'affiche, c'est que le thème bgrt est utilisé =>
`sudo update-alternatives --config default.plymouth`
.
## Licences
...
...
logo
0 → 100644
View file @
283b2560
#!/bin/sh
# initramfs conf-hook
# Place this file in /usr/share/initramfs-tools/conf-hooks.d/
# Place your logo in `/usr/share/plymouth/logo.png` to replace the Ubuntu logo
LOGO_PNG
=
"/usr/share/plymouth/logo.png"
if
[
-f
"
${
LOGO_PNG
}
"
]
;
then
cp
--backup
"
${
LOGO_PNG
}
"
"/usr/share/plymouth/ubuntu-logo.png"
fi
logo.png
0 → 100644
View file @
283b2560
4.66 KB
Maxime Accadia
@accadiam
mentioned in commit
880bd88b
·
Jun 10, 2021
mentioned in commit
880bd88b
mentioned in commit 880bd88b899f838be54eaeb01d2202bbef100d13
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment