BSPWM and Polybar themes

This commit is contained in:
Out Of Ideas 2023-10-27 13:53:03 -05:00
parent 2bfd730ffc
commit 34c38cddc0
2 changed files with 216 additions and 0 deletions

29
bspwm/bspwmrc Executable file
View File

@ -0,0 +1,29 @@
#!/bin/bash
# Autostart
polybar -c ~/.config/polybar/Daybreak.ini Daybreak &
xsetroot -cursor_name left_ptr &
hsetroot -fill ~/.local/share/wallpapers/wallpaper.JPG &
# ...
# ...
# Workspaces
bspc monitor -d 1 2 3 4 5 6 7 8 9 10
# Gaps/borders
bspc config border_width 1
bspc config window_gap 4
bspc config borderless_monocle true
bspc config gapless_monocle true
bspc config focused_border_color \#ffffff
bspc config normal_border_color \#270e05
# Fix bar padding
bspc config top_padding 17
# Split ratio
bspc config split_ratio 0.62
# ...

187
polybar/Daybreak.ini Normal file
View File

@ -0,0 +1,187 @@
;==========================================================
;
;
; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
;
;
; To learn more about how to configure Polybar
; go to https://github.com/polybar/polybar
;
; The README contains a lot of information
;
;==========================================================
[colors]
background = #e6270e05
background-alt =#361f24
foreground = #fef9cd
primary = #97aee4
secondary = #6b789b
alert = #832f01
disabled = #654d8d
[bar/Daybreak]
width = 100%
height = 18pt
radius = 0
; dpi = 96
background = ${colors.background}
foreground = ${colors.foreground}
line-size = 2pt
border-size = 0pt
border-color = #00000000
padding-left = 0
padding-right = 1
module-margin = 1
separator = :
separator-foreground = ${colors.disabled}
font-0 = "FiraCode Nerd Font:size=10;2"
modules-left = xworkspaces xwindow
modules-right = filesystem pulseaudio memory cpu xkeyboard date
cursor-click = pointer
cursor-scroll = ns-resize
enable-ipc = true
; tray-position = right
; wm-restack = generic
wm-restack = bspwm
; wm-restack = i3
override-redirect = true
[module/xworkspaces]
type = internal/xworkspaces
icon-0 = 1;󱞁
icon-1 = 2;
icon-2 = 3;󰈹
icon-3 = 4;󱎴
icon-4 = 5;󰉏
icon-5 = 6;󰟵
icon-6 = 7;
icon-7 = 8;󰈦
icon-8 = 9;󰟞
icon-9 = 10;󰍳
label-active = %icon%
label-active-background = ${colors.background-alt}
label-active-underline= ${colors.primary}
label-active-padding = 1
label-occupied = %icon%
label-occupied-foreground = ${colors.secondary}
label-occupied-padding = 1
label-urgent = %name%
label-urgent-background = ${colors.alert}
label-urgent-padding = 1
label-empty =
;label-empty-foreground = ${colors.disabled}
;label-empty-padding = 1
[module/xwindow]
type = internal/xwindow
label = %title:0:60:...%
;[module/filesystem]
;type = internal/fs
;interval = 25
;
;mount-0 = /
;
;label-mounted = %{F#F0C674}%mountpoint%%{F-} %percentage_used%%
;
;label-unmounted = %mountpoint% not mounted
;label-unmounted-foreground = ${colors.disabled}
[module/pulseaudio]
type = internal/pulseaudio
format-volume-prefix = " "
format-volume-prefix-foreground = ${colors.primary}
format-volume = <label-volume>
label-volume = %percentage%%
label-muted = muted
label-muted-foreground = ${colors.disabled}
[module/memory]
type = internal/memory
interval = 2
format-prefix = "󰍛 "
format-prefix-foreground = ${colors.primary}
label = %percentage_used:2%%
[module/cpu]
type = internal/cpu
interval = 2
format-prefix = " "
format-prefix-foreground = ${colors.primary}
label = %percentage:2%%
[module/xkeyboard]
type = internal/xkeyboard
blacklist-0 = num lock
label-layout = %layout%
label-layout-foreground = ${colors.primary}
label-indicator-padding = 2
label-indicator-margin = 1
label-indicator-foreground = ${colors.background}
label-indicator-background = ${colors.secondary}
;[network-base]
;type = internal/network
;interval = 5
;format-connected = <label-connected>
;format-disconnected = <label-disconnected>
;label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected
;[module/wlan]
;inherit = network-base
;interface-type = wireless
;label-connected = %{F#F0C674}%ifname%%{F-} %essid% %local_ip%
;[module/eth]
;inherit = network-base
;interface-type = wired
;label-connected = %{F#F0C674}%ifname%%{F-} %local_ip%
[module/date]
type = internal/date
interval = 1
date = %a %b %d,%l:%M
date-alt = %Y-%m-%d %H:%M:%S
label = %date%
label-foreground = ${colors.forground}
[settings]
screenchange-reload = true
pseudo-transparency = true
;vim:ft=dosini