Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
branding-etersoft-ximper
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
branding-etersoft-ximper
Commits
3db88849
Verified
Commit
3db88849
authored
Jun 30, 2026
by
Kirill Unitsaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: replace convert with magick
parent
273cfb70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Makefile.in
Makefile.in
+5
-5
No files found.
Makefile.in
View file @
3db88849
...
...
@@ -22,14 +22,14 @@ graphics:
cp
-al
images/wallpaper.png
backgrounds/default.png
cp
-al
images/wallpaper.png
backgrounds/xdm.png
# make wallpapers for grub2
#
convert
images/background4x3.png -resize 800x600 images/small.png
#
magick
images/background4x3.png -resize 800x600 images/small.png
# display status
#
convert
images/small.png images/product-logo.png -geometry +30+30 -composite images/grub.png
#
magick
images/small.png images/product-logo.png -geometry +30+30 -composite images/grub.png
# cp -al images/grub.png images/boot.png
# use predefined image 800x600 with logo
if
[
-n
"$(STATUS)"
];then
\
mv
images/boot.png
images/.boot.png;
\
convert
images/.boot.png
-undercolor
'#c62530'
-fill
white
-font
/usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf
-style
Normal
-weight
Normal
-pointsize
30
-gravity
NorthEast
-draw
'text 0,55 " $(STATUS) "'
images/boot.png;\
magick
images/.boot.png
-undercolor
'#c62530'
-fill
white
-font
/usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf
-style
Normal
-weight
Normal
-pointsize
30
-gravity
NorthEast
-draw
'text 0,55 " $(STATUS) "'
images/boot.png;\
rm
-f
images/.boot.png;
\
fi
# product logo for ahttpd
...
...
@@ -41,7 +41,7 @@ graphics:
browser-qt/design/bg.png
:
images/installer.png
if
[
-n
"
$(STATUS)
"
]
;
then
\
convert
$<
-undercolor
'#c62530'
-fill
white
-font
/usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf
-style
Normal
-weight
Normal
-pointsize
30
-gravity
northwest
-draw
'text 0,0 "
$(STATUS)
"'
$@
;
\
magick
$<
-undercolor
'#c62530'
-fill
white
-font
/usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf
-style
Normal
-weight
Normal
-pointsize
30
-gravity
northwest
-draw
'text 0,0 "
$(STATUS)
"'
$@
;
\
else
\
cp
-a
$<
$@
;
\
fi
...
...
@@ -59,7 +59,7 @@ browser-qt:browser-qt/design/bg.png
ahttpd
:
for
i
in
ahttpd/images/
*
.svg
;
do
\
image
=
$$
{
i%.svg
}
;
\
convert
-background
none
$$
image.svg
$$
image.png
;
\
magick
-background
none
$$
image.svg
$$
image.png
;
\
done
install
-d
$(datadir)
/alterator/design/styles
cp
-a
ahttpd/images
$(datadir)
/alterator/design
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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