This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Description : Install Mesa/Vulkan | |
# Author : Jose Cerrejon Gonzalez (ulysess@gmail_dot._com) | |
# Version : 1.0.0 (06/Nov/20) | |
# Repository : git://anongit.freedesktop.org/mesa/mesa | |
# | |
clear | |
readonly INSTALL_DIR="$HOME/mesa" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Description : Box86 | |
# Author : Jose Cerrejon Gonzalez (ulysess@gmail_dot._com) | |
# Version : 1.0.0 (05/Nov/20) | |
# Repository : https://github.com/ptitSeb/box86 | |
# | |
clear | |
readonly INSTALL_DIR="$HOME/box86" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ex | |
# | |
# Description : Vulkan driver (EXPERIMENTAL) | |
# Author : Jose Cerrejon Gonzalez (ulysess@gmail_dot._com) | |
# Version : 1.0.0 (14/Jul/20) | |
# Compatible : Raspberry Pi 4 | |
# | |
# Info : Thks to PI Labs | |
# Help : https://ninja-build.org/manual.html#ref_pool | |
# : https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=276412&start=25#p1678723 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Download and install widget loader : https://github.com/FokkeZB/nl.fokkezb.loading | |
Alloy.Globals.loading = Alloy.createWidget("nl.fokkezb.loading"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Description : Git Server | |
# Author : Jose Cerrejon Gonzalez (ulysess@gmail_dot._com) | |
# Version : 1.0 (2/Nov/14) | |
# | |
# HELP · http://www.instructables.com/id/GitPi-A-Private-Git-Server-on-Raspberry-Pi/all/?lang=es | |
# | |
clear | |
IP=$(/sbin/ifconfig eth0 | grep "inet addr" | awk -F: '{print $2}' | awk '{print $1}') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Description : Git Server | |
# Author : Jose Cerrejon Gonzalez (ulysess@gmail_dot._com) | |
# Version : 0.1 (2/Nov/14) | |
# | |
# HELP · http://www.instructables.com/id/GitPi-A-Private-Git-Server-on-Raspberry-Pi/all/?lang=es | |
# | |
clear | |
IP=$(hostname -I) |
NewerOlder