From 51dbbaeaff14b3694f080538fc0de4924d7e26b1 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Sat, 5 Nov 2022 21:21:36 -0500 Subject: add logo, desktop entry, make install, and .gitignore --- .gitignore | 2 ++ Circle-icons-chat.svg | 36 ++++++++++++++++++++++++++++++++++++ Makefile | 5 +++++ vito.desktop | 8 ++++++++ 4 files changed, 51 insertions(+) create mode 100644 .gitignore create mode 100644 Circle-icons-chat.svg create mode 100644 vito.desktop diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..135fa4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.swp +vito diff --git a/Circle-icons-chat.svg b/Circle-icons-chat.svg new file mode 100644 index 0000000..7ddde08 --- /dev/null +++ b/Circle-icons-chat.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Makefile b/Makefile index 158dbb6..3dd2461 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,14 @@ all: vito CFLAGS=$(shell pkg-config --cflags gtk4) -O0 -g -Wall LDLIBS=$(shell pkg-config --libs gtk4) +HOME=$(shell echo ~) vito: vito.c gcc ${CFLAGS} -o vito vito.c ${LDLIBS} +install: vito + mkdir -p ${HOME}/.config/autostart + cp vito.desktop ${HOME}/.config/autostart + clean: rm vito diff --git a/vito.desktop b/vito.desktop new file mode 100644 index 0000000..1e04c2e --- /dev/null +++ b/vito.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=1.0 +Type=Application +Terminal=false +Exec=$HOME/vito/vito +Name=Vito +Icon=$HOME/vito/Circle-icons-chat.svg -- cgit