Compare commits
4 commits
46adba33d3
...
7e642c36ea
Author | SHA1 | Date | |
---|---|---|---|
7e642c36ea | |||
57335d492a | |||
113421ccef | |||
7c0f074bd7 |
7 changed files with 21 additions and 4 deletions
|
@ -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/
|
||||
|
||||
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
|
||||
===========
|
||||
|
||||
|
|
|
@ -23,3 +23,8 @@ bind = $mainMod SHIFT, L, exec, wlogout --protocol layer-shell
|
|||
# Cheatsheet
|
||||
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)$
|
||||
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
SCRIPTS="$HOME/.config/hypr/menu.list"
|
||||
SCRIPT_PATH="$HOME/.config/hypr/scripts"
|
||||
|
||||
# Kill existing tofi instance if running
|
||||
pkill -x tofi || {
|
||||
chosen=$(cut -d'=' -f1 "$SCRIPTS" | tofi)
|
||||
if [ -n "$chosen" ]; then
|
||||
script=$(awk -F= -v sel="$chosen" '$1==sel {print $2}' "$SCRIPTS")
|
||||
[ -n "$SCRIPT_PATH/$script" ] && eval "$SCRIPT_PATH/$script" &
|
||||
[ -n "$script" ] && eval "$script" &
|
||||
fi
|
||||
}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 72 KiB |
Binary file not shown.
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 98 KiB |
|
@ -3,6 +3,7 @@
|
|||
"spacing": 4,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"hyprland/workspaces",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
@ -29,6 +30,12 @@
|
|||
}
|
||||
},
|
||||
|
||||
"custom/menu": {
|
||||
"format": " ",
|
||||
"tooltip": false,
|
||||
"on-click": "$HOME/.config/hypr/scripts/launch-menu.sh"
|
||||
},
|
||||
|
||||
"hyprland/language": {
|
||||
"format": "<big></big> {long}",
|
||||
"format-us": "US",
|
||||
|
@ -41,7 +48,7 @@
|
|||
"clock": {
|
||||
"format": "{:%H:%M}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"on-click": "gnome-calendar"
|
||||
"on-click": "gnome-clocks"
|
||||
},
|
||||
|
||||
"wireplumber": {
|
||||
|
|
|
@ -57,6 +57,7 @@ window#waybar {
|
|||
background: #C1B3BB;
|
||||
}
|
||||
|
||||
#custom-menu,
|
||||
#clock,
|
||||
#hyprland-window,
|
||||
#custom-date,
|
||||
|
@ -111,7 +112,7 @@ window#waybar {
|
|||
background: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
#custom-power, #custom-menu {
|
||||
padding: 0 1px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue