From 0c0706586772ad793bb5b3043723e19bbb780189 Mon Sep 17 00:00:00 2001 From: Ethan Lane Date: Tue, 28 Jun 2022 19:37:43 +0100 Subject: [PATCH] Add polybar config --- README.md | 5 +- home/vylpes/.config/i3/config | 11 +- home/vylpes/.config/polybar/config.ini | 168 +++++++++++++++++++++++++ 3 files changed, 177 insertions(+), 7 deletions(-) create mode 100644 home/vylpes/.config/polybar/config.ini diff --git a/README.md b/README.md index 23e7acb..aca0d96 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ This is a list of the packages I use - dunst - flameshot - gimp +- i3 - lightdm - lightdm-webkit2-greeter - networkmanager @@ -26,9 +27,11 @@ This is a list of the packages I use - nodejs - npm - nvidia +- nvm - openssh - pavucontrol - picom +- polybar - powerlevel10k - pulseaudio - rofi @@ -37,7 +40,5 @@ This is a list of the packages I use - ttf-hack - vim - x11 -- xmonad -- xmobar - yarn - zsh diff --git a/home/vylpes/.config/i3/config b/home/vylpes/.config/i3/config index e128f4b..6ccc454 100644 --- a/home/vylpes/.config/i3/config +++ b/home/vylpes/.config/i3/config @@ -37,9 +37,10 @@ exec --no-startup-id nm-applet exec_always picom exec_always nitrogen --restore exec_always dunst +exec --no-startup-id polybar -r # Use pactl to adjust volume in PulseAudio. -set $refresh_i3status killall -SIGUSR1 i3status +set $refresh_i3status killall -SIGUSR1 polybar bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status @@ -158,6 +159,10 @@ bindsym $mod+Shift+8 move container to workspace number $ws8 bindsym $mod+Shift+9 move container to workspace number $ws9 bindsym $mod+Shift+0 move container to workspace number $ws10 +# keyboard layouts +bindsym $mod+Shift+F1 exec setxkbmap -layout us && $refresh_i3status +bindsym $mod+Shift+F2 exec setxkbmap -layout gb && $refresh_i3status + # reload the configuration file bindsym $mod+Mod1+r reload # restart i3 inplace (preserves your layout/session, can be used to upgrade i3) @@ -194,10 +199,6 @@ bindsym $mod+r mode "resizer # Start i3bar to display a workspace bar (plus the system information i3status # finds out, if available) -bar { - position top - status_command i3status -} # Gaps gaps inner 10 diff --git a/home/vylpes/.config/polybar/config.ini b/home/vylpes/.config/polybar/config.ini new file mode 100644 index 0000000..015402b --- /dev/null +++ b/home/vylpes/.config/polybar/config.ini @@ -0,0 +1,168 @@ +;========================================================== +; +; +; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ +; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ +; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ +; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ +; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ +; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ +; +; +; To learn more about how to configure Polybar +; go to https://github.com/polybar/polybar +; +; The README contains a lot of information +; +;========================================================== + +[colors] +background = #282A2E +background-alt = #373B41 +foreground = #C5C8C6 +primary = #63C5DA +secondary = #8ABEB7 +alert = #A54242 +disabled = #707880 + +[bar/top] +width = 100% +height = 24pt +radius = 6 + +; dpi = 96 + +background = ${colors.background} +foreground = ${colors.foreground} + +line-size = 3pt + +border-size = 4pt +border-color = #00000000 + +padding-left = 0 +padding-right = 1 + +module-margin = 1 + +separator = | +separator-foreground = ${colors.disabled} + +font-0 = Hack;2 +font-1 = Font Awesome + +modules-left = xworkspaces xwindow +modules-right = filesystem pulseaudio xkeyboard memory cpu eth 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 + +label-active = %name% +label-active-background = ${colors.background-alt} +label-active-underline= ${colors.primary} +label-active-padding = 1 + +label-occupied = %name% +label-occupied-padding = 1 + +label-urgent = %name% +label-urgent-background = ${colors.alert} +label-urgent-padding = 1 + +label-empty = %name% +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#63C5DA}%mountpoint%%{F-} %percentage_used%% + +label-unmounted = %mountpoint% not mounted +label-unmounted-foreground = ${colors.disabled} + +[module/pulseaudio] +type = internal/pulseaudio + +format-volume-prefix = "VOL " +format-volume-prefix-foreground = ${colors.primary} +format-volume = + +label-volume = %percentage%% + +label-muted = muted +label-muted-foreground = ${colors.disabled} + +[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} + +[module/memory] +type = internal/memory +interval = 2 +format-prefix = "RAM " +format-prefix-foreground = ${colors.primary} +label = %percentage_used:2%% + +[module/cpu] +type = internal/cpu +interval = 2 +format-prefix = "CPU " +format-prefix-foreground = ${colors.primary} +label = %percentage:2%% + +[network-base] +type = internal/network +interval = 5 +format-connected = +format-disconnected = +label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected + +[module/eth] +inherit = network-base +interface-type = wired +label-connected = %{F#63C5DA}%ifname%%{F-} %local_ip% + +[module/date] +type = internal/date +interval = 1 + +date = %H:%M +date-alt = %Y-%m-%d %H:%M:%S + +label = %date% +label-foreground = ${colors.primary} + +[settings] +screenchange-reload = true +pseudo-transparency = true + +; vim:ft=dosini