From 23f25cfd757942edd6e8ab85a8da4c972644d908 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Sat, 18 Jun 2022 22:42:54 +0100 Subject: [PATCH] Latest --- kitty/kitty.conf | 1 + polybar/config.ini | 10 +++++----- polybar/launch.sh | 16 +++++++++++----- zsh/zshrc | 7 ++++++- 4 files changed, 23 insertions(+), 11 deletions(-) diff --git a/kitty/kitty.conf b/kitty/kitty.conf index c7330f8..7d01ae1 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -2,3 +2,4 @@ include ./theme.conf font_family LigaLiberationMono font_size 10 window_padding_width 12 +wayland_titlebar_color #000e07 diff --git a/polybar/config.ini b/polybar/config.ini index c27cf11..e96576b 100644 --- a/polybar/config.ini +++ b/polybar/config.ini @@ -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 diff --git a/polybar/launch.sh b/polybar/launch.sh index 118291b..a6ae23c 100755 --- a/polybar/launch.sh +++ b/polybar/launch.sh @@ -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 diff --git a/zsh/zshrc b/zsh/zshrc index eb80590..e7b46ca 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -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