diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index 6ea0fb2..304c61d 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -5,11 +5,13 @@ "spacing": 4, "margin": 10, "modules-left": [ + "custom/arch", "clock", "cpu", "temperature", "memory", - "disk", + "disk#disk2", + "disk" ], "modules-center": [ "hyprland/workspaces", @@ -69,9 +71,14 @@ }, "disk": { "interval": 30, - "format": "{percentage_free}% ", + "format": "{free} ", "path": "/home" }, + "disk#disk2": { + "interval": 30, + "format": "{free} ", + "path": "/" + }, "network": { // "interface": "wlp2*", // (Optional) To force the use of this interface "format-wifi": "{ipaddr}/{cidr} ({signalStrength}%) ", @@ -142,4 +149,8 @@ }, "sort-by-number": true }, + "custom/arch": { + "format": "\udb82\udcc7", + "on-click": "wofi --show drun" + } } diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 0ad1546..e5f3b93 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -62,6 +62,7 @@ window#waybar { #custom-quit, #custom-lock, #custom-reboot, +#custom-arch, #workspaces { padding: 7px 10px; opacity: 1; @@ -119,6 +120,10 @@ window#waybar { color: @yellow; } +#custom-arch { + color: #1793d1; +} + #workspaces button { color: #cfcfcf; margin: 0px 5px; diff --git a/.zshrc b/.zshrc index 62a6661..e4471bb 100644 --- a/.zshrc +++ b/.zshrc @@ -111,5 +111,8 @@ source $ZSH/oh-my-zsh.sh [[ ! -r '/home/lucien/.opam/opam-init/init.zsh' ]] || source '/home/lucien/.opam/opam-init/init.zsh' > /dev/null 2> /dev/null # END opam configuration +# Update PATH variable +export PATH=$PATH:~/.local/share/bin + # start uwufetch uwufetch diff --git a/install.sh b/install.sh index 0c860ab..edfdce5 100644 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash -yay -S hyprland kitty wofi waybar hyprlock sddm hyprcursor wlogout network-manager-applet brightnessctl dunst +yay -S hyprland kitty wofi waybar hyprlock sddm hyprcursor nerd-fonts network-manager-applet brightnessctl dunst cp -r ./.config ~/ cp -r ./.local ~/ git clone https://github.com/chrissicool/zsh-256color ~/.oh-my-zsh/plugins/zsh-256color