Latest
This commit is contained in:
parent
36dd936193
commit
23f25cfd75
4 changed files with 23 additions and 11 deletions
|
@ -2,3 +2,4 @@ include ./theme.conf
|
|||
font_family LigaLiberationMono
|
||||
font_size 10
|
||||
window_padding_width 12
|
||||
wayland_titlebar_color #000e07
|
||||
|
|
|
@ -29,11 +29,11 @@ disabled = #707880
|
|||
[bar/example]
|
||||
width = 100%
|
||||
height = 30
|
||||
radius = 6
|
||||
;radius = 6
|
||||
dpi = 96
|
||||
border-top = 5
|
||||
border-left = 5
|
||||
border-right = 5
|
||||
;border-top = 5
|
||||
;border-left = 5
|
||||
;border-right = 5
|
||||
monitor = ${env:MONITOR:}
|
||||
background = ${colors.background}
|
||||
foreground = ${colors.foreground}
|
||||
|
@ -55,7 +55,7 @@ font-2 = unicode:fontformat=truetype:size=8:antialias=false;0
|
|||
font-3 = SymbolsNerdFont:size=15;3
|
||||
|
||||
|
||||
modules-left = my-text-label xworkspaces
|
||||
modules-left = my-text-label
|
||||
;modules-center =
|
||||
modules-right = filesystem memory cpu battery temperature backlight pulseaudio bluetooth wlan wakatime date time
|
||||
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Terminate already running bar instances
|
||||
killall -q polybar
|
||||
# If all your bars have ipc enabled, you can also use
|
||||
# polybar-msg cmd quit
|
||||
|
||||
# Launch Polybar, using default config location ~/.config/polybar/config.ini
|
||||
polybar example 2>&1 | tee -a /tmp/polybar.log & disown
|
||||
|
||||
echo "Polybar launched..."
|
||||
|
||||
# Launch Polybar on all connected monitors
|
||||
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
||||
MONITOR=$m polybar --reload example &
|
||||
done
|
||||
#for m in $(polybar --list-monitors | cut -d":" -f1); do
|
||||
# MONITOR=$m polybar --reload example &
|
||||
#done
|
||||
|
||||
|
|
|
@ -31,7 +31,12 @@ case "$OSTYPE" in
|
|||
linux*)
|
||||
# Linux specific
|
||||
#ZSH_THEME=agnoster-customized
|
||||
ZSH_THEME=robbyrussell
|
||||
ZSH_THEME=spaceship
|
||||
SPACESHIP_PACKAGE_SHOW=true
|
||||
SPACESHIP_TIME_SHOW=true
|
||||
SPACESHIP_NODE_SHOW=true
|
||||
|
||||
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue