My slstatus configuration
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
8 роки тому
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # slstatus
  2. A suckless status monitor for DWM written in pure C without any system() calls.
  3. # Information included
  4. - wifi percentage
  5. - battery percentage
  6. - cpu usage in percent
  7. - cpu temperature
  8. - ram usage in percent
  9. - alsa volume level in percent
  10. - disk usage
  11. - date
  12. - time
  13. Multiple batteries, wifi cards etc. are supported and everything can be reordered and customized via a C header file (similar to DWM).
  14. # Screenshot
  15. ![screenshot](screenshot.png)
  16. # Installation
  17. Just run ```sudo make install```! :P
  18. # Configuration
  19. Just change config.h (commented) to your needs and recompile!
  20. # Starting
  21. Put the following code in your ~/.xinitrc:
  22. ```
  23. while true; do
  24. slstatus
  25. done &
  26. ```
  27. # Contributing
  28. See TODO.md for things that you could do.
  29. People who contributed are listed in the CONTRIBUTORS.md file.
  30. If you want to contribute, please use [the suckless coding style](http://suckless.org/coding_style)! For indentation please use 4 spaces.