diff --git a/README.md b/README.md index 10ba922..c289782 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,20 @@ I just bought a new laptop and on my workstation I was using ssd from Sawfish wh ## Dependencies and compilation -This app requires GTK+ 3.0 development libraries and gcc. +This app requires GTK+ 3.0 development libraries and gcc or clang. I am using this command to compile the program: + +Using GCC: ```shell % gcc ssdd.c -o ssdd `pkg-config --cflags --libs gtk+-3.0` ``` +Using Clang: +```shell +% clang ssdd.c -o ssdd `pkg-config --cflags --libs gtk+-3.0` +``` + This produces the binary `ssdd` which you can place in your $PATH. ## Configure Openbox to use it. diff --git a/ssdd b/ssdd new file mode 100755 index 0000000..98f8757 Binary files /dev/null and b/ssdd differ