diff --git a/README b/README deleted file mode 100644 index 62ca498..0000000 --- a/README +++ /dev/null @@ -1,4 +0,0 @@ -This is an application which allows the configuration of Raspberry Pi system settings.. - -To build, run autogen.sh, then ./configure and make. -Use sudo make install to install data files. diff --git a/README.md b/README.md new file mode 100644 index 0000000..66934a1 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# rc_gui + +GUI for configuring Raspberry Pi settings. +(Including Raspberry Pi Desktop for PC/Mac). + +Uses the command-line equivalent, [`raspi-config`](https://github.com/RPi-Distro/raspi-config), internally for some operations. + +## Building + +Install pre-requisites: + +```bash +sudo apt update +sudo apt install autoconf libglib2.0-dev autogen libtool intltool libgtk2.0-dev +``` + +Configure and build: + +```bash +./autogen.sh +./configure +make +``` + +Install data files: + +```bash +sudo make install +```