Compare commits

..

No commits in common. "7e642c36ea73087c9fa268cbaea75e4b2e6d7d2c" and "46adba33d38e5822b9efbb5067464ba3641550a4" have entirely different histories.

7 changed files with 4 additions and 21 deletions

View file

@ -7,11 +7,6 @@ to just use it as it is because it's very opinionated and hard coded.
If you want a readymade one then I'd suggest https://omarchy.org/ If you want a readymade one then I'd suggest https://omarchy.org/
Introduction Video
==================
<iframe title="Jeena's Hyprland Demo" width="560" height="315" src="https://tube.jeena.net/videos/embed/2EpbXJnMrDokc3362oXSTQ" frameborder="0" allowfullscreen="" sandbox="allow-same-origin allow-scripts allow-popups allow-forms"></iframe>
Screenshots Screenshots
=========== ===========

View file

@ -23,8 +23,3 @@ bind = $mainMod SHIFT, L, exec, wlogout --protocol layer-shell
# Cheatsheet # Cheatsheet
bind = $mainMod, F1, exec, ~/.config/hypr/scripts/cheatsheet.py ~/.config/hypr/shortcuts.txt bind = $mainMod, F1, exec, ~/.config/hypr/scripts/cheatsheet.py ~/.config/hypr/shortcuts.txt
# OBS
bind = $mainMod, F10, pass, class:^(com.obsproject.Studio)$
bind = , F1, pass, class:^(com.obsproject.Studio)$
bind = , F2, pass, class:^(com.obsproject.Studio)$

View file

@ -1,12 +1,13 @@
#!/usr/bin/env bash #!/usr/bin/env bash
SCRIPTS="$HOME/.config/hypr/menu.list" SCRIPTS="$HOME/.config/hypr/menu.list"
SCRIPT_PATH="$HOME/.config/hypr/scripts"
# Kill existing tofi instance if running # Kill existing tofi instance if running
pkill -x tofi || { pkill -x tofi || {
chosen=$(cut -d'=' -f1 "$SCRIPTS" | tofi) chosen=$(cut -d'=' -f1 "$SCRIPTS" | tofi)
if [ -n "$chosen" ]; then if [ -n "$chosen" ]; then
script=$(awk -F= -v sel="$chosen" '$1==sel {print $2}' "$SCRIPTS") script=$(awk -F= -v sel="$chosen" '$1==sel {print $2}' "$SCRIPTS")
[ -n "$script" ] && eval "$script" & [ -n "$SCRIPT_PATH/$script" ] && eval "$SCRIPT_PATH/$script" &
fi fi
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

View file

@ -3,7 +3,6 @@
"spacing": 4, "spacing": 4,
"modules-left": [ "modules-left": [
"custom/menu",
"hyprland/workspaces", "hyprland/workspaces",
"hyprland/window" "hyprland/window"
], ],
@ -30,12 +29,6 @@
} }
}, },
"custom/menu": {
"format": " 󰣇 ",
"tooltip": false,
"on-click": "$HOME/.config/hypr/scripts/launch-menu.sh"
},
"hyprland/language": { "hyprland/language": {
"format": "<big>󰌌</big> {long}", "format": "<big>󰌌</big> {long}",
"format-us": "US", "format-us": "US",
@ -48,7 +41,7 @@
"clock": { "clock": {
"format": "{:%H:%M}", "format": "{:%H:%M}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"on-click": "gnome-clocks" "on-click": "gnome-calendar"
}, },
"wireplumber": { "wireplumber": {

View file

@ -57,7 +57,6 @@ window#waybar {
background: #C1B3BB; background: #C1B3BB;
} }
#custom-menu,
#clock, #clock,
#hyprland-window, #hyprland-window,
#custom-date, #custom-date,
@ -112,7 +111,7 @@ window#waybar {
background: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.7);
} }
#custom-power, #custom-menu { #custom-power {
padding: 0 1px; padding: 0 1px;
} }