diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-03 12:03:52 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-03 12:03:52 -0500 |
| commit | cd511f1783f4933bce05a995c82f9160edb7d0e6 (patch) | |
| tree | 40633df933e3159c5190ead82681b98c68611fc8 /paleofetch/config.h | |
| parent | 99c885f477f8a06f1c4c6778e5fa9f2373a38e7b (diff) | |
Fixed some stuff, added ns, relocated scripts /usr/local/bin
Diffstat (limited to 'paleofetch/config.h')
| -rw-r--r-- | paleofetch/config.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/paleofetch/config.h b/paleofetch/config.h deleted file mode 100644 index c788258..0000000 --- a/paleofetch/config.h +++ /dev/null @@ -1,43 +0,0 @@ -#include "logos/arch.h" -#define COLOR "\e[1;36m" - -#define CONFIG \ -{ \ - /* name function cached */\ - { "", get_title, false }, \ - { "", get_bar, false }, \ - { "OS: ", get_os, true }, \ - { "Host: ", get_host, true }, \ - { "Kernel: ", get_kernel, false }, \ - { "Uptime: ", get_uptime, false }, \ - SPACER \ - { "Packages: ", get_packages_pacman, false }, \ - { "Shell: ", get_shell, false }, \ - { "Resolution: ", get_resolution, false }, \ - { "Terminal: ", get_terminal, false }, \ - SPACER \ - { "CPU: ", get_cpu, true }, \ - { "GPU: ", get_gpu1, true }, \ - { "Memory: ", get_memory, false }, \ - SPACER \ - { "", get_colors1, false }, \ - { "", get_colors2, false }, \ -} - -#define CPU_CONFIG \ -{ \ - REMOVE("(R)"), \ - REMOVE("(TM)"), \ - REMOVE("Dual-Core"), \ - REMOVE("Quad-Core"), \ - REMOVE("Six-Core"), \ - REMOVE("Eight-Core"), \ - REMOVE("Core"), \ - REMOVE("CPU"), \ -} - -#define GPU_CONFIG \ -{ \ - REMOVE("Corporation"), \ -} - |