My slstatus configuration
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

21 líneas
355 B

  1. # slstatus version
  2. VERSION = 0
  3. # customize below to fit your system
  4. # paths
  5. PREFIX = /usr/local
  6. MANPREFIX = $(PREFIX)/share/man
  7. X11INC = /usr/X11R6/include
  8. X11LIB = /usr/X11R6/lib
  9. # flags
  10. CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
  11. CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
  12. LDFLAGS = -L$(X11LIB) -s
  13. LDLIBS = -lX11
  14. # compiler and linker
  15. CC = cc