Browse Source

Add ocaml to system

Taylor Bockman 8 years ago
parent
commit
add2576aea
  1. 13
      ubuntu/99_physlock_on_hibernate_and_suspend
  2. 5
      ubuntu/installer.sh

13
ubuntu/99_physlock_on_hibernate_and_suspend

@ -0,0 +1,13 @@
#!/bin/bash
case "$1" in
suspend|hibernate)
actions to
take
on suspend
or hibernate
;;
resume|thaw)
physlock -d &
;;
esac

5
ubuntu/installer.sh

@ -37,12 +37,14 @@ echo "Installing Dmenu..."
sudo apt-get -qq -y install suckless-tools
# Languages
echo "Installing languages..."
echo "Installing languages and tools..."
sudo apt-get -qq -y install python-dev
sudo apt-get -qq -y install python-pip
sudo apt-get -qq -y install python3-dev
sudo apt-get -qq -y install python3-pip
sudo apt-get -qq -y install m4
sudo apt-get -qq -y install ocaml
sudo apt-get -qq -y install aspcud
wget https://raw.github.com/ocaml/opam/master/shell/opam_installer.sh -O - | sh -s /usr/local/bin
# Editors
@ -87,7 +89,6 @@ sudo apt-get -qq -y install xdotool
sudo apt-get -qq -y install cmake
sudo apt-get -qq -y install gsimplecal
sudo apt-get -qq -y install xclip
sudo apt-get -qq -y install aspcud
# Comms
echo "Installing comms..."

Loading…
Cancel
Save