From c57e8ab185623510e527400a34d729b313daffc4 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Tue, 25 Jul 2023 23:46:05 +0200 Subject: feat(polybar): update polybar style --- config/polybar/material/bars.ini | 494 +++++++++ config/polybar/material/colors.ini | 23 + config/polybar/material/config.ini | 293 ++++++ config/polybar/material/launch.sh | 14 + config/polybar/material/modules.ini | 1068 ++++++++++++++++++++ config/polybar/material/preview.ini | 315 ++++++ config/polybar/material/preview.sh | 14 + config/polybar/material/scripts/checkupdates | 117 +++ config/polybar/material/scripts/color-switch.sh | 55 + config/polybar/material/scripts/colors-dark.sh | 120 +++ config/polybar/material/scripts/colors-light.sh | 120 +++ config/polybar/material/scripts/launcher.sh | 3 + config/polybar/material/scripts/powermenu.sh | 95 ++ config/polybar/material/scripts/pywal.sh | 87 ++ config/polybar/material/scripts/random.sh | 96 ++ config/polybar/material/scripts/rofi/colors.rasi | 10 + config/polybar/material/scripts/rofi/confirm.rasi | 24 + config/polybar/material/scripts/rofi/launcher.rasi | 119 +++ config/polybar/material/scripts/rofi/message.rasi | 24 + .../polybar/material/scripts/rofi/networkmenu.rasi | 126 +++ .../polybar/material/scripts/rofi/powermenu.rasi | 126 +++ config/polybar/material/scripts/rofi/styles.rasi | 126 +++ config/polybar/material/scripts/updates.sh | 45 + config/polybar/material/user_modules.ini | 233 +++++ 24 files changed, 3747 insertions(+) create mode 100644 config/polybar/material/bars.ini create mode 100644 config/polybar/material/colors.ini create mode 100644 config/polybar/material/config.ini create mode 100755 config/polybar/material/launch.sh create mode 100644 config/polybar/material/modules.ini create mode 100644 config/polybar/material/preview.ini create mode 100755 config/polybar/material/preview.sh create mode 100755 config/polybar/material/scripts/checkupdates create mode 100755 config/polybar/material/scripts/color-switch.sh create mode 100755 config/polybar/material/scripts/colors-dark.sh create mode 100755 config/polybar/material/scripts/colors-light.sh create mode 100755 config/polybar/material/scripts/launcher.sh create mode 100755 config/polybar/material/scripts/powermenu.sh create mode 100755 config/polybar/material/scripts/pywal.sh create mode 100755 config/polybar/material/scripts/random.sh create mode 100644 config/polybar/material/scripts/rofi/colors.rasi create mode 100644 config/polybar/material/scripts/rofi/confirm.rasi create mode 100644 config/polybar/material/scripts/rofi/launcher.rasi create mode 100644 config/polybar/material/scripts/rofi/message.rasi create mode 100644 config/polybar/material/scripts/rofi/networkmenu.rasi create mode 100644 config/polybar/material/scripts/rofi/powermenu.rasi create mode 100644 config/polybar/material/scripts/rofi/styles.rasi create mode 100755 config/polybar/material/scripts/updates.sh create mode 100644 config/polybar/material/user_modules.ini (limited to 'config/polybar/material') diff --git a/config/polybar/material/bars.ini b/config/polybar/material/bars.ini new file mode 100644 index 0000000..281672b --- /dev/null +++ b/config/polybar/material/bars.ini @@ -0,0 +1,494 @@ +;; ┌────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▀▄░█▀█░█▀▄░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█▀▄░█▀█░█▀▄░▀▀█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀▀░░▀░▀░▀░▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[bar] +fill =  +empty =  +indicator =  + +[module/volume] +type = internal/alsa + +; Soundcard to be used +; Usually in the format hw:# where # is the card number +; You can find the different card numbers in `/proc/asound/cards` +master-soundcard = default +speaker-soundcard = default +headphone-soundcard = default + +; Name of the master, speaker and headphone mixers +; Use the following command to list available mixer controls: +; $ amixer scontrols | sed -nr "s/.*'([[:alnum:]]+)'.*/\1/p" +; If master, speaker or headphone-soundcard isn't the default, +; use `amixer -c # scontrols` instead where # is the number +; of the master, speaker or headphone soundcard respectively +; +; Default: Master +master-mixer = Master + +; Optionally define speaker and headphone mixers +; Default: none +;;speaker-mixer = Speaker +; Default: none +;;headphone-mixer = Headphone + +; NOTE: This is required if headphone_mixer is defined +; Use the following command to list available device controls +; $ amixer controls | sed -r "/CARD/\!d; s/.*=([0-9]+).*name='([^']+)'.*/printf '%3.0f: %s\n' '\1' '\2'/e" | sort +; You may also need to use `amixer -c # controls` as above for the mixer names +; Default: none +;;headphone-id = 9 + +; Use volume mapping (similar to amixer -M and alsamixer), where the increase in volume is linear to the ear +; Default: false +;;mapped = true + +; Interval for volume increase/decrease (in percent points) +; Default: 5 +interval = 5 + +; Available tags: +; (default) +; +; +format-volume = + +; Available tags: +; (default) +; +; +format-muted = +format-muted-prefix =  + +; Available tokens: +; %percentage% (default) +label-volume = %percentage%% + +; Available tokens: +; %percentage% (default +label-muted = " Muted" +label-muted-foreground = ${color.foreground-alt} + +; Only applies if is used +ramp-volume-0 =  +ramp-volume-1 =  +ramp-volume-2 =  + +; Only applies if is used +bar-volume-width = 10 +bar-volume-gradient = false + +bar-volume-indicator = ${bar.indicator} +bar-volume-indicator-foreground = ${color.foreground} + +bar-volume-fill = ${bar.fill} +bar-volume-foreground-0 = ${color.foreground} +bar-volume-foreground-1 = ${color.foreground} +bar-volume-foreground-2 = ${color.foreground} + +bar-volume-empty = ${bar.empty} +bar-volume-empty-foreground = ${color.foreground} + +; If defined, it will replace when +; headphones are plugged in to `headphone_control_numid` +; If undefined, will be used for both +; Only applies if is used +ramp-headphones-0 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/brightness] +;type = internal/xbacklight +type = internal/backlight + +; Use the following command to list available cards: +; $ ls -1 /sys/class/backlight/ +;card = intel_backlight +card = amdgpu_bl0 + +; Available tags: +;