feat: wallpaper menu, blue colors on waybar with blur

This commit is contained in:
João Dias
2024-08-18 17:38:57 -03:00
parent 5fc6add9c3
commit 6b77a0ab0e
13 changed files with 98 additions and 74 deletions
+3
View File
@@ -90,6 +90,9 @@ function Apply_dotfiles {
cp -f ./hyprlock/* $CONFIG_DIR/hypr cp -f ./hyprlock/* $CONFIG_DIR/hypr
cp -f ./hypridle/* $CONFIG_DIR/hypr cp -f ./hypridle/* $CONFIG_DIR/hypr
echo "-> Installing scripts in ~/.config/hypr/scripts"
cp -r ./hyprland/scripts $CONFIG_DIR/hypr
echo "-> Installing Wofi" echo "-> Installing Wofi"
mkdir -p $CONFIG_DIR/wofi mkdir -p $CONFIG_DIR/wofi
cp -f ./wofi/* $CONFIG_DIR/wofi cp -f ./wofi/* $CONFIG_DIR/wofi
+3 -3
View File
@@ -6,7 +6,7 @@
$terminal = kitty $terminal = kitty
$fileManager = nautilus $fileManager = nautilus
$menu = wofi $menu = anyrun
$mainMod = SUPER $mainMod = SUPER
$lockscreen = hyprlock $lockscreen = hyprlock
$screenshotDir = "$HOME/Screenshots" $screenshotDir = "$HOME/Screenshots"
@@ -40,7 +40,7 @@ bind = $mainMod, K, exec, $terminal
bind = $mainMod, Q, killactive bind = $mainMod, Q, killactive
bind = $mainMod, E, exec, $fileManager bind = $mainMod, E, exec, $fileManager
bind = $mainMod, F, togglefloating bind = $mainMod, F, togglefloating
bind = $mainMod, SPACE, exec, $menu -S drun bind = $mainMod, SPACE, exec, $menu
bind = $mainMod, P, pseudo, bind = $mainMod, P, pseudo,
bind = $mainMod, J, togglesplit bind = $mainMod, J, togglesplit
bind = $mainMod, F11, fullscreen bind = $mainMod, F11, fullscreen
@@ -62,7 +62,7 @@ bind = , Print, exec, $screenshotSelect
bind = $mainMod, Print, exec, $screenshotFull bind = $mainMod, Print, exec, $screenshotFull
# Open wofi clipboard # Open wofi clipboard
bind = $mainMod, V, exec, cliphist list | $menu -S dmenu | cliphist decode | wl-copy bind = $mainMod, V, exec, cliphist list | wofi -S dmenu | cliphist decode | wl-copy
# Reloading Components # Reloading Components
# Waybar # Waybar
+2
View File
@@ -9,3 +9,5 @@ env = QT_QPA_PLATFORM, wayland
env = QT_QPA_PLATFORMTHEME, qt6ct env = QT_QPA_PLATFORMTHEME, qt6ct
env = XDG_CURRENT_DESKTOP, Hyprland env = XDG_CURRENT_DESKTOP, Hyprland
env = ADW_DISABLE_PORTAL, 1 env = ADW_DISABLE_PORTAL, 1
env = AQ_DRM_DEVICES, /dev/dri/card0:/dev/dri/card1
+4 -6
View File
@@ -12,13 +12,10 @@ windowrulev2 = float, class:xdg-desktop-portal*
windowrulev2 = float, class:org.pulseaudio.pavucontrol windowrulev2 = float, class:org.pulseaudio.pavucontrol
# Resize # Resize
windowrulev2 = size 50% 50%, class:org.pulseaudio.pavucontrol windowrulev2 = size 70% 65%, class:org.pulseaudio.pavucontrol
# Moving # Center
windowrulev2 = move 49.27% 7.28%, class:org.pulseaudio.pavucontrol windowrulev2 = center, class:org.pulseaudio.pavucontrol
# Maximize
windowrulev2 = tile, title:^(Resources)$
# Animations # Animations
windowrulev2 = animation slide right, class:org.pulseaudio.pavucontrol windowrulev2 = animation slide right, class:org.pulseaudio.pavucontrol
@@ -36,5 +33,6 @@ windowrulev2 = opacity , class:kitty
# Blur # Blur
blurls = logout_dialog blurls = logout_dialog
blurls = kitty blurls = kitty
blurls = waybar
windowrulev2 = suppressevent maximize, class:.* windowrulev2 = suppressevent maximize, class:.*
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
HYPRPAPER_FILE="$HOME/.config/hypr/hyprpaper.conf"
SET_WALLPAPER=$(find $HOME/wallpapers/ | wofi --dmenu --allow-images true)
echo "" > $HYPRPAPER_FILE # Cleans hyprpaper file
echo "\$wallpaper = $SET_WALLPAPER" >> $HYPRPAPER_FILE
echo "" >> $HYPRPAPER_FILE
echo "splash = true" >> $HYPRPAPER_FILE
echo "preload = \$wallpaper" >> $HYPRPAPER_FILE
echo "wallpaper = , \$wallpaper" >> $HYPRPAPER_FILE
if ! [[ $SET_WALLPAPER == "" ]] && ! [[ $SET_WALLPAPER == " " ]]
then
killall -q hyprpaper
exec hyprpaper &
fi
exit 0
+5 -3
View File
@@ -1,4 +1,6 @@
splash = true
preload = ~/wallpapers/nijika-ijichi-bocchi-the-rock.jpg $wallpaper =
wallpaper = , ~/wallpapers/nijika-ijichi-bocchi-the-rock.jpg # use ´contain:´ before wallpaper to preserve original size
splash = true
preload = $wallpaper
wallpaper = , $wallpaper
+7 -2
View File
@@ -93,8 +93,13 @@
{ {
"label": "󰒲 Do Not Disturb", "label": "󰒲 Do Not Disturb",
"type": "toggle", "type": "toggle",
"command": "swaync-client -d -sw", "command": "swaync-client -d",
"update-command": "sh -c '[[ $(swaync-client -D) == \"true\"]] && echo true || echo false'" "update-command": "swaync-client -D"
},
{
"label": "Change Wallpaper",
"type": "normal",
"command": "bash -c '$(swaync-client -cp; bash $HOME/.config/hypr/scripts/change-wallpaper.sh)'"
} }
] ]
} }
+3 -2
View File
@@ -268,12 +268,12 @@ tooltip {
.widget-buttons-grid { .widget-buttons-grid {
margin-top: 2px; margin-top: 2px;
margin-left: 75px; margin-left: 5px;
} }
.widget-buttons-grid button { .widget-buttons-grid button {
background: @button-bg; background: @button-bg;
padding: 10px; padding: 12px;
border-radius: 16px; border-radius: 16px;
margin: 2px; margin: 2px;
} }
@@ -293,6 +293,7 @@ tooltip {
.widget-buttons-grid button label { .widget-buttons-grid button label {
font-size: 0.95rem; font-size: 0.95rem;
color: black; color: black;
font-weight: 500;
} }
.widget-volume trough, .widget-volume trough,
+7 -7
View File
@@ -5,14 +5,13 @@
@define-color red #f38ba8; @define-color red #f38ba8;
@define-color maroon #eba0ac; @define-color maroon #eba0ac;
@define-color peach #fab387; @define-color peach #fab387;
@define-color yellow alpha(#f9e2af, .8); @define-color yellow #f9e2af;
@define-color green #a6e3a1; @define-color green #a6e3a1;
@define-color teal #94e2d5; @define-color teal #94e2d5;
@define-color sky #89dceb; @define-color sky #89dceb;
@define-color sapphire #74c7ec; @define-color sapphire #74c7ec;
@define-color blue #89b4fa; @define-color blue #89b4fa;
@define-color lavender #b4befe; @define-color lavender #b4befe;
@define-color text #cdd6f4;
@define-color subtext1 #bac2de; @define-color subtext1 #bac2de;
@define-color subtext0 #a6adc8; @define-color subtext0 #a6adc8;
@define-color overlay2 #9399b2; @define-color overlay2 #9399b2;
@@ -25,8 +24,9 @@
@define-color mantle #181825; @define-color mantle #181825;
@define-color crust #11111b; @define-color crust #11111b;
@define-color background alpha(@base, .6); @define-color highlight shade(@blue, .67);
@define-color bar shade(@yellow, .2); @define-color bar alpha(shade(@highlight, .8), .3);
@define-color hover shade(@yellow, .5); @define-color hover shade(@highlight, .6);
@define-color active shade(@yellow, .55); @define-color active shade(@highlight, .58);
@define-color highlight shade(@yellow, .4); @define-color text rgb(245, 245, 245);
@define-color text_dark rgb(30, 30, 30);
+7 -15
View File
@@ -1,11 +1,6 @@
// -*- mode: jsonc -*-
{ {
// "layer": "top", // Waybar at top layer "spacing": 4,
// "position": "bottom", // Waybar position (top|bottom|left|right) "margin": 5,
// "height": 32, // Waybar height (to be removed for auto height)
// "width": 1280, // Waybar width
"spacing": 4, // Gaps between modules (4px)
// Choose the order of the modules
"modules-left": [ "modules-left": [
"custom/logo", "custom/logo",
"hyprland/workspaces", "hyprland/workspaces",
@@ -20,7 +15,7 @@
"pulseaudio", "pulseaudio",
"custom/notifications" "custom/notifications"
], ],
// Modules configuration
"hyprland/workspaces": { "hyprland/workspaces": {
"disable-scroll": false, "disable-scroll": false,
"all-outputs": true, "all-outputs": true,
@@ -74,7 +69,7 @@
"format": "", // Change to desired logo "format": "", // Change to desired logo
"tooltip": false, "tooltip": false,
"escape": true, "escape": true,
"on-click": "wofi --show drun -I -a -b" // Change to desired action "on-click": "wofi -s drun" // Change to desired action
}, },
"custom/notifications": { "custom/notifications": {
"tooltip": false, "tooltip": false,
@@ -175,9 +170,6 @@
"format-full": "", "format-full": "",
"format-icons": ["", "", "", "", ""] "format-icons": ["", "", "", "", ""]
}, },
"battery#bat2": {
"bat": "BAT2"
},
"power-profiles-daemon": { "power-profiles-daemon": {
"format": "{icon}", "format": "{icon}",
"tooltip-format": "Power profile: {profile}\nDriver: {driver}", "tooltip-format": "Power profile: {profile}\nDriver: {driver}",
@@ -225,9 +217,9 @@
"spotube": " ", "spotube": " ",
"default": "󰎇" "default": "󰎇"
}, },
"on-scroll-down": "playerctl --player spotify previous", "on-scroll-down": "playerctl previous",
"on-scroll-up": "playerctl --player spotify next", "on-scroll-up": "playerctl next",
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null", // Script in resources folder "exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null", // Script in resources folder
"on-click": "playerctl --player spotify play-pause" // Change "spotify to your preferred player" "on-click": "playerctl play-pause" // Change "spotify to your preferred player"
} }
} }
+32 -31
View File
@@ -4,26 +4,22 @@
* { * {
color: @text; color: @text;
border-radius: 14px; border-radius: 14px;
transition: 120ms ease-in;
} }
window { window {
font-family: "0xProto Nerd Font Regular", "Font Awesome", sans-serif; font-family: "Cantarell", "Font Awesome", sans-serif;
font-size: 12px; font-size: 12px;
color: @text; color: @text;
border-radius: 16px; border-radius: 16px;
} }
/* Manage "floating" waybar position with paddings */
window > * { window > * {
margin-top: 5px;
margin-left: 4px;
margin-right: 4px;
padding: 2px; padding: 2px;
background: @bar;
} }
window#waybar { window#waybar {
background-color: transparent; background: @bar;
} }
window#waybar.hidden { window#waybar.hidden {
@@ -40,24 +36,6 @@ button:hover {
background-color: @hover; background-color: @hover;
} }
widget > * {
padding-top: 1px;
padding-bottom: 1px;
transition: 100ms ease-in;
}
widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
background: @hover;
}
#custom-logo {
padding-left: 12px;
padding-right: 18px;
font-size: 15.2px;
transition: 110ms ease-in;
margin-right: 6px;
}
#workspaces { #workspaces {
border-radius: 16px; border-radius: 16px;
padding-left: 2px; padding-left: 2px;
@@ -92,10 +70,13 @@ widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
background-color: alpha(shade(@orange, 0.6), .3); background-color: alpha(shade(@orange, 0.6), .3);
} }
#custom-notifications { widget > * {
font-size: 16px; padding-top: 1px;
padding-left: 10px; padding-bottom: 1px;
padding-right: 12px; }
widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
background: @hover;
} }
#clock, #clock,
@@ -113,10 +94,13 @@ widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
#mode, #mode,
#idle_inhibitor, #idle_inhibitor,
#scratchpad, #scratchpad,
#window,
#power-profiles-daemon, #power-profiles-daemon,
#custom-notifications,
#custom-logo,
#mpd { #mpd {
padding: 0 10px; padding: 0 10px;
color: @text; font-weight: 500;
} }
/* /*
@@ -131,6 +115,20 @@ widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
} }
} }
#custom-logo {
padding-left: 12px;
padding-right: 18px;
font-size: 15.2px;
transition: 110ms ease-in;
margin-right: 6px;
}
#custom-notifications {
font-size: 16px;
padding-left: 10px;
padding-right: 12px;
}
#battery.charging, #battery.plugged { #battery.charging, #battery.plugged {
color: @text; color: @text;
background-color: alpha(@base, .3); background-color: alpha(@base, .3);
@@ -152,10 +150,13 @@ widget > *:hover:not(#window):not(#workspaces):not(#tray):not(#custom-media) {
} }
#custom-media { #custom-media {
background: @highlight; border: 2px solid @highlight;
font-weight: 500;
transition: 200ms ease-in;
} }
#custom-media:hover { #custom-media:hover {
border: 2px solid transparent;
background: @hover; background: @hover;
} }
+1 -1
View File
@@ -9,7 +9,7 @@
} }
window { window {
background-color: alpha(shade(@background, .6), 0.9); background-color: alpha(shade(@background, .6), .6);
} }
button { button {
+3 -3
View File
@@ -1,7 +1,7 @@
/* background -> #312D23 /* background -> #312D23
* selected -> #AC8A3D * highlight -> #AC8A3D
* highlight-low(not-selected) -> #726037 * mark(not-selected) -> #726037
*/ */
* { * {
@@ -33,7 +33,7 @@
#input { #input {
border: 2px solid shade(#AC8A3D, .8); border: 2px solid shade(#AC8A3D, .8);
border-radius: 14px; border-radius: 14px;
margin: 4px; margin: 8px;
background-color: shade(#726037, .7); background-color: shade(#726037, .7);
box-shadow: none; box-shadow: none;
} }