Compare commits

..

4 commits

Author SHA1 Message Date
7e642c36ea Add intro video to readme 2025-09-05 23:01:46 +09:00
57335d492a Add key bindings for OBS 2025-09-05 22:59:17 +09:00
113421ccef Resize the wallpaper to fix exactly my screen 2025-09-04 22:20:25 +09:00
7c0f074bd7 Add Arch logo as menu launcher 2025-09-04 22:16:45 +09:00
7 changed files with 21 additions and 4 deletions

View file

@ -7,6 +7,11 @@ 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,3 +23,8 @@ 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,13 +1,12 @@
#!/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_PATH/$script" ] && eval "$SCRIPT_PATH/$script" & [ -n "$script" ] && eval "$script" &
fi fi
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Before After
Before After

View file

@ -3,6 +3,7 @@
"spacing": 4, "spacing": 4,
"modules-left": [ "modules-left": [
"custom/menu",
"hyprland/workspaces", "hyprland/workspaces",
"hyprland/window" "hyprland/window"
], ],
@ -29,6 +30,12 @@
} }
}, },
"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",
@ -41,7 +48,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-calendar" "on-click": "gnome-clocks"
}, },
"wireplumber": { "wireplumber": {

View file

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