Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
agetic
librecast
Commits
0f4a3188
Commit
0f4a3188
authored
Aug 30, 2017
by
Carlos Remuzzi
Browse files
adaptando gst a dimensiones reales de pantalla
parent
ca54771f
Changes
2
Hide whitespace changes
Inline
Side-by-side
librecast
View file @
0f4a3188
#!/usr/bin/env bash
#!/usr/bin/env bash
SIZE_STRING
=
$(
xdpyinfo |
awk
'/dimensions/{print $2}'
)
SCREEN_WIDTH
=
1920
echo
"detectando resolución
$SIZE_STRING
"
SCREEN_HEIGHT
=
1080
SCREEN_WIDTH
=
"
$(
cut
-d
'x'
-f1
<<<
"
$SIZE_STRING
"
)
"
SCREEN_HEIGHT
=
"
$(
cut
-d
'x'
-f2
<<<
"
$SIZE_STRING
"
)
"
AP_NAME
=
libreCast-s1
AP_NAME
=
libreCast-s1
if
[
$#
-eq
1
]
;
then
if
[
$#
-eq
1
]
;
then
...
...
tools/install.sh
View file @
0f4a3188
...
@@ -105,9 +105,6 @@ main() {
...
@@ -105,9 +105,6 @@ main() {
echo
"https://gitlab.geo.gob.bo/agetic/librecast/blob/master/INSTALL.md"
echo
"https://gitlab.geo.gob.bo/agetic/librecast/blob/master/INSTALL.md"
fi
fi
# configuración de la resolucion de pantalla
# xdpyinfo | awk '/dimensions/{print $2}'
printf
"
${
GREEN
}
"
printf
"
${
GREEN
}
"
echo
' ___ __ ______ __ '
echo
' ___ __ ______ __ '
echo
' / (_) /_ ________ / ____/___ ______/ /_ '
echo
' / (_) /_ ________ / ____/___ ______/ /_ '
...
...
Write
Preview
Supports
Markdown
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