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 | |
sudo apt-get -y update | |
sudo apt-get -y install nodejs npm git vim | |
#For GOLANG | |
#export PATH=$PATH:/usr/local/go/bin | |
#Enable Scroll_Lock for keyboards that uses the key for turning on the lights | |
xmodmap -e "add mod3 = Scroll_Lock" |
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
Variable not set | |
{% if someVar.size %} |
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
{% comment %} | |
{% assign price_min = 0 %} | |
{% assign price_max = 0 %} | |
{% for variant in product.variants %} | |
{% if price_min == 0 or price_max == 0 %} | |
{% assign price_min = variant.price %} | |
{% assign price_max = variant.price %} | |
{% endif %} | |
{% if price_min > variant.price %} | |
{% assign price_min = variant.price %} |
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 | |
if [ `bluetoothd -v` == 5.40 ] | |
then | |
echo "This script installs bluez version 5.40 and you already have it installed" | |
exit 0 | |
fi | |
sudo apt-get update | |
sudo apt-get -y install libglib2.0-dev libdbus-glib-1-dev libudev-dev libical-dev libreadline-dev |