Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PREFIX ?= /usr/local

all: afetch

afetch: ${SRC} src/config.h src/colour.h
afetch: ${SRC} src/config.h src/color.h
${CC} ${CFLAGS} ${SRC} ${LDFLAGS} -o afetch

debug:
Expand Down
6 changes: 3 additions & 3 deletions src/colour.h → src/color.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* BOLD COLOURS */
/* BOLD COLORS */
#define BBLACK "\033[1;30m"
#define BGRAY "\033[1;90m"
#define BRED "\033[1;31m"
Expand All @@ -8,7 +8,7 @@
#define BMAGENTA "\033[1;35m"
#define BCYAN "\033[1;36m"
#define BWHITE "\033[1;37m"
/* NORMAL COLOURS */
/* NORMAL COLORS */
#define BLACK "\033[0;30m"
#define RED "\033[0;31m"
#define GREEN "\033[0;32m"
Expand All @@ -19,4 +19,4 @@
#define WHITE "\033[0;37m"
/* OTHER */
#define RESET "\033[0;m"
#define BITAL "\033[1;3m"
#define BITAL "\033[1;3m"
15 changes: 9 additions & 6 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,24 @@
#define UptimeText " UPTIME " //
#define ShellText " SHELL " //
#define PackageText " PKGS " //
#define EditorText " EDITOR " //󰧭
#define DeWmText " DE/WM " //
#define ColorsText " COLORS " //󰸌

/* Those two options are mutually exclusive.
* Either set one to 'true' or both to 'false'. */
#define ForceLowerCase false
#define ForceUpperCase false

/* See options in colour.h file */
#define TextColour WHITE
/* See options in color.h file */
#define Textcolor WHITE

#define PrintColours false /* must be either 'true' or 'false' */
#define ColourCharacter "● "
#define Printcolors true /* must be either 'true' or 'false' */
#define colorCharacter "▀"

/* Some examples of things you may want to use for your ColourCharacter
/* Some examples of things you may want to use for your colorCharacter

▀ ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▉ ▊ ▋ ▌ ▍ ▎ ▏

█ ▄ ▀ ●
█ ▄ ▀ ●
*/
Loading