This file contains 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/sh | |
pkgin -y install xorg | |
pkgin -y install hal | |
pkgin -y install fam | |
pkgin -y install mpv compton midori firefox mozilla-rootcerts-openssl | |
pkgin -y install wpa_gui sysupgrade deluge slim slim-themes uget thunderbird | |
pkgin -y install xfce4 xfce4-extras | |
cp /usr/pkg/share/examples/rc.d/hal /etc/rc.d | |
cp /usr/pkg/share/examples/rc.d/dbus /etc/rc.d | |
cp /usr/pkg/share/examples/rc.d/famd /etc/rc.d |
This file contains 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
#include <stdio.h> | |
#include <freetype2/ft2build.h> | |
#include FT_FREETYPE_H | |
int main() { | |
FT_Library ft; | |
FT_Error err = FT_Init_FreeType(&ft); | |
if (err != 0) { | |
printf("Failed to initialize FreeType\n"); |