This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ly supports 24-bit true color with styling, which means each color is a 32-bit value. | |
| # The format is 0xSSRRGGBB, where SS is the styling, RR is red, GG is green, and BB is blue. | |
| # Here are the possible styling options: | |
| #define TB_BOLD 0x01000000 | |
| #define TB_UNDERLINE 0x02000000 | |
| #define TB_REVERSE 0x04000000 | |
| #define TB_ITALIC 0x08000000 | |
| #define TB_BLINK 0x10000000 | |
| #define TB_HI_BLACK 0x20000000 | |
| #define TB_BRIGHT 0x40000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copy me if you can. | |
| * by 20h | |
| */ | |
| #define _BSD_SOURCE | |
| #include <unistd.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdarg.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| conky.config = { | |
| update_interval = 1.0, | |
| double_buffer = true, | |
| use_xft = true, | |
| font = 'Terminus:style=Regular:pixelsize=12', | |
| override_utf8_locale = true, | |
| default_color = '#cccccc', | |
| own_window_class = 'Conky', | |
| own_window = false, | |
| own_window_type = 'desktop', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* See LICENSE file for copyright and license details. */ | |
| /* appearance */ | |
| static const unsigned int borderpx = 1; /* border pixel of windows */ | |
| static const unsigned int snap = 32; /* snap pixel */ | |
| static const int showbar = 1; /* 0 means no bar */ | |
| static const int topbar = 1; /* 0 means bottom bar */ | |
| static const char *fonts[] = { "monospace:size=10" }; | |
| static const char dmenufont[] = "monospace:size=10"; | |
| static const char *colors[][3] = { |