diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-07-17 02:12:54 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-07-17 02:12:54 +0530 |
commit | 687d96ed4c9e7405221becbc11b852bf6db47c67 (patch) | |
tree | 98776f84d41cd1aa1de4d090d99cef509d802dbb /.config | |
parent | d3f09792ee1b3b7a886897173b9152c64cb013de (diff) |
added cgit.css
Diffstat (limited to '.config')
-rwxr-xr-x | .config/glava/bars.glsl | 3 | ||||
-rwxr-xr-x | .config/glava/radial.glsl | 7 | ||||
-rw-r--r-- | .config/lightdm/slick-greeter.conf | 2 | ||||
-rw-r--r-- | .config/polybar/config.ini | 2 |
4 files changed, 8 insertions, 6 deletions
diff --git a/.config/glava/bars.glsl b/.config/glava/bars.glsl index 6e6a7b0..8c76126 100755 --- a/.config/glava/bars.glsl +++ b/.config/glava/bars.glsl @@ -20,7 +20,8 @@ /* Bar color changes with height */ #define GRADIENT (d / GRADIENT_POWER + 1) /* Bar color */ -#define COLOR (#3366b2 * GRADIENT) +//#define COLOR (#3366b2 * GRADIENT) +#define COLOR (#be3ed8 * ((d / 128) + 0.6)) /* Direction that the bars are facing, 0 for inward, 1 for outward */ #define DIRECTION 0 /* Whether to switch left/right audio buffers */ diff --git a/.config/glava/radial.glsl b/.config/glava/radial.glsl index 1209c7d..a0ec16d 100755 --- a/.config/glava/radial.glsl +++ b/.config/glava/radial.glsl @@ -1,6 +1,7 @@ /* center radius (pixels) */ -#define C_RADIUS 70 +//#define C_RADIUS 70 +#define C_RADIUS 100 /* center line thickness (pixels) */ #define C_LINE 1 /* outline color */ @@ -14,7 +15,7 @@ /* outline width (in pixels, set to 0 to disable outline drawing) */ #define BAR_OUTLINE_WIDTH 0 /* Amplify magnitude of the results each bar displays */ -#define AMPLIFY 300 +#define AMPLIFY 400 /* Bar color */ #define COLOR (#9b35e8 * ((d / 128) + 0.6)) /* Angle (in radians) for how much to rotate the visualizer */ @@ -33,7 +34,7 @@ #define CENTER_OFFSET_X 590 /* Gravity step, override from `smooth_parameters.glsl` */ -#request setgravitystep 12 +#request setgravitystep 6 /* Smoothing factor, override from `smooth_parameters.glsl` */ #request setsmoothfactor 0.02 diff --git a/.config/lightdm/slick-greeter.conf b/.config/lightdm/slick-greeter.conf index 2b780a0..38436e7 100644 --- a/.config/lightdm/slick-greeter.conf +++ b/.config/lightdm/slick-greeter.conf @@ -33,7 +33,7 @@ # clock-format=What clock format to use (e.g., %H:%M or %l:%M %p) [Greeter] activate-numlock=true -background=/etc/lightdm/bg.jpg +background=/etc/lightdm/bg background-color=#232627 draw-user-backgrounds=true show-a11y=false diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini index 638ba9a..503560d 100644 --- a/.config/polybar/config.ini +++ b/.config/polybar/config.ini @@ -279,7 +279,7 @@ type = custom/script click-left = module_toggle interval = 100 exec = "uptime | awk -F, '{sub(".*up ",x,$1);sub(" min","",$1);sub(":","H ",$1);print $1"M"}'" -label = "/ UP:%output% " +label = "/ UP: %output% " hidden = true format-foreground = ${colors.uptime-fg} |