Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ _These contributors help with code review, triaging, and development._
- [@Metalhearf](https://github.com/Metalhearf)
- [@prime-run](https://github.com/prime-run)
- [@heeeeeeeeeeh](https://github.com/heeeeeeeeeeh/)
- [@naye2m](https://github.com/naye2m/)

## Testers

Expand Down
28 changes: 14 additions & 14 deletions Configs/.config/hypr/keybindings.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ bindd = Control Shift, Escape, $d system monitor , exec, hyde-shell system.monit

$d=[$l|Rofi menus]
$rofi-launch=hyde-shell rofilaunch
bindd = $mainMod, A, $d application finder , exec, pkill -x rofi || $rofi-launch d
bindd = $mainMod, TAB, $d window switcher , exec, pkill -x rofi || $rofi-launch w
bindd = $mainMod Shift, E, $d file finder , exec, pkill -x rofi || $rofi-launch f
bindd = $mainMod, slash, $d keybindings hint, exec, pkill -x rofi || hyde-shell keybinds_hint c # launch keybinds hint
bindd = $mainMod, comma, $d emoji picker , exec, pkill -x rofi || hyde-shell emoji-picker # launch emoji picker
bindd = $mainMod, period, $d glyph picker , exec, pkill -x rofi || hyde-shell glyph-picker # launch glyph picker
bindd = $mainMod, V, $d clipboard , exec, pkill -x rofi || hyde-shell cliphist -c # launch clipboard,
bindd = $mainMod Shift, V, $d clipboard manager , exec, pkill -x rofi || hyde-shell cliphist # launch clipboard Manager
bindd = $mainMod Shift, A, $d select rofi launcher , exec, pkill -x rofi || hyde-shell rofiselect # launch select menu
bindd = $mainMod, A, $d application finder , exec, killall rofi || $rofi-launch d
bindd = $mainMod, TAB, $d window switcher , exec, killall rofi || $rofi-launch w
bindd = $mainMod Shift, E, $d file finder , exec, killall rofi || $rofi-launch f
bindd = $mainMod, slash, $d keybindings hint, exec, killall rofi || hyde-shell keybinds_hint c # launch keybinds hint
bindd = $mainMod, comma, $d emoji picker , exec, killall rofi || hyde-shell emoji-picker # launch emoji picker
bindd = $mainMod, period, $d glyph picker , exec, killall rofi || hyde-shell glyph-picker # launch glyph picker
bindd = $mainMod, V, $d clipboard , exec, killall rofi || hyde-shell cliphist -c # launch clipboard,
bindd = $mainMod Shift, V, $d clipboard manager , exec, killall rofi || hyde-shell cliphist # launch clipboard Manager
bindd = $mainMod Shift, A, $d select rofi launcher , exec, killall rofi || hyde-shell rofiselect # launch select menu


$hc=Hardware Controls
Expand Down Expand Up @@ -140,13 +140,13 @@ $rice=Theming and Wallpaper
$d=[$rice]
bindd = $mainMod Alt, Right, $d next global wallpaper , exec, hyde-shell wallpaper -Gn # next global wallpaper
bindd = $mainMod Alt, Left, $d previous global wallpaper , exec, hyde-shell wallpaper -Gp # previous global wallpaper
bindd = $mainMod Shift, W, $d select a global wallpaper , exec, pkill -x rofi || hyde-shell wallpaper -SG # launch wallpaper select menu
bindd = $mainMod Shift, W, $d select a global wallpaper , exec, killall rofi || hyde-shell wallpaper -SG # launch wallpaper select menu
bindd = $mainMod Alt, Up, $d next waybar layout , exec, hyde-shell wbarconfgen n # next waybar mode
bindd = $mainMod Alt, Down, $d previous waybar layout , exec, hyde-shell wbarconfgen p # previous waybar mode
bindd = $mainMod Shift, R, $d wallbash mode selector , exec, pkill -x rofi || hyde-shell wallbashtoggle -m # launch wallbash mode select menu
bindd = $mainMod Shift, T, $d select a theme, exec, pkill -x rofi || hyde-shell themeselect # launch theme select menu
bindd = $mainMod+Shift, Y, $d select animations, exec, pkill -x rofi || hyde-shell animations --select # launch animations select menu
bindd = $mainMod+Shift, U, $d select hyprlock layout, exec, pkill -x rofi || hyde-shell hyprlock --select # launch hyprlock layout select menu
bindd = $mainMod Shift, R, $d wallbash mode selector , exec, killall rofi || hyde-shell wallbashtoggle -m # launch wallbash mode select menu
bindd = $mainMod Shift, T, $d select a theme, exec, killall rofi || hyde-shell themeselect # launch theme select menu
bindd = $mainMod+Shift, Y, $d select animations, exec, killall rofi || hyde-shell animations --select # launch animations select menu
bindd = $mainMod+Shift, U, $d select hyprlock layout, exec, killall rofi || hyde-shell hyprlock --select # launch hyprlock layout select menu



Expand Down
2 changes: 1 addition & 1 deletion Configs/.config/libinput-gestures.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gesture pinch clockwise 4 volumecontrol.sh -o i 10
gesture pinch anticlockwise 4 volumecontrol.sh -o d 10
gesture swipe up 4 hyprctl dispatch fullscreen 0
gesture swipe down 4 hyprctl dispatch exec screenshot.sh p # print all monitor outputs
gesture swipe right 4 hyprctl dispatch exec pkill rofi || cliphist.sh c # open Pasteboard in screen center
gesture swipe right 4 hyprctl dispatch exec killall rofi || cliphist.sh c # open Pasteboard in screen center
gesture swipe left 4 hyprctl dispatch exec dunstctl history-pop
gesture pinch out 4 brightnesscontrol.sh i
gesture pinch in 4 brightnesscontrol.sh d
2 changes: 1 addition & 1 deletion Configs/.local/lib/hyde/cliphist.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
pkill -u "$USER" rofi && exit 0
killall -u "$USER" rofi && exit 0
[[ $HYDE_SHELL_INIT -ne 1 ]] && eval "$(hyde-shell init)"
cache_dir="${HYDE_CACHE_HOME:-$HOME/.cache/hyde}"
favorites_file="$cache_dir/landing/cliphist_favorites"
Expand Down
2 changes: 1 addition & 1 deletion Configs/.local/lib/hyde/emoji-picker.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
pkill -u "$USER" rofi && exit 0
killall -u "$USER" rofi && exit 0
if [[ $HYDE_SHELL_INIT -ne 1 ]]; then
eval "$(hyde-shell init)"
else
Expand Down
2 changes: 1 addition & 1 deletion Configs/.local/lib/hyde/glyph-picker.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
pkill -u "$USER" rofi && exit 0
killall -u "$USER" rofi && exit 0
if [[ $HYDE_SHELL_INIT -ne 1 ]]; then
eval "$(hyde-shell init)"
else
Expand Down
2 changes: 1 addition & 1 deletion Configs/.local/lib/hyde/keybinds_hint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
pkill -x rofi && exit
killall rofi && exit
[[ $HYDE_SHELL_INIT -ne 1 ]] && eval "$(hyde-shell init)"
confDir="${XDG_CONFIG_HOME:-$HOME/.config}"
keyconfDir="$confDir/hypr"
Expand Down
2 changes: 1 addition & 1 deletion Configs/.local/lib/hyde/rofilaunch.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
pkill rofi && exit 0
killall rofi && exit 0
if [[ $HYDE_SHELL_INIT -ne 1 ]]; then
eval "$(hyde-shell init)"
else
Expand Down
2 changes: 1 addition & 1 deletion Configs/.local/lib/hyde/wallbashtoggle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[[ $HYDE_SHELL_INIT -ne 1 ]] && eval "$(hyde-shell init)"
wallbashModes=("theme" "auto" "dark" "light")
rofi_wallbash() {
pkill -u "$USER" rofi && exit 0
killall -u "$USER" rofi && exit 0
font_scale=$ROFI_WALLBASH_MODE_SCALE
[[ $font_scale =~ ^[0-9]+$ ]] || font_scale=${ROFI_SCALE:-10}
r_scale="configuration {font: \"JetBrainsMono Nerd Font $font_scale\";}"
Expand Down
24 changes: 12 additions & 12 deletions Configs/.local/share/hyde/keybindings.conf
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ bind = $mainMod, F, exec, $BROWSER # launch web browser
bind = Ctrl+Shift, Escape, exec, hyde-shell system.monitor # launch system monitor (htop/btop or fallback to top)

# Rofi menus
bind = alt, space, exec, pkill -x rofi || $scrPath/rofilaunch.sh d # launch application launcher
bind = $mainMod, Tab, exec, pkill -x rofi || $scrPath/rofilaunch.sh w # launch window switcher
bind = $mainMod+Shift, E, exec, pkill -x rofi || $scrPath/rofilaunch.sh f # launch file explorer
bind = alt, space, exec, killall rofi || $scrPath/rofilaunch.sh d # launch application launcher
bind = $mainMod, Tab, exec, killall rofi || $scrPath/rofilaunch.sh w # launch window switcher
bind = $mainMod+Shift, E, exec, killall rofi || $scrPath/rofilaunch.sh f # launch file explorer

# Audio control
bindl = , F10, exec, $scrPath/volumecontrol.sh -o m # toggle audio mute
Expand Down Expand Up @@ -77,16 +77,16 @@ bind = $mainMod+Alt, Right, exec, $scrPath/swwwallpaper.sh -n # next wallpaper
bind = $mainMod+Alt, Left, exec, $scrPath/swwwallpaper.sh -p # previous wallpaper
bind = $mainMod+Alt, Up, exec, $scrPath/wbarconfgen.sh n # next waybar mode
bind = $mainMod+Alt, Down, exec, $scrPath/wbarconfgen.sh p # previous waybar mode
bind = $mainMod+Shift, R, exec, pkill -x rofi || $scrPath/wallbashtoggle.sh -m # launch wallbash mode select menu
bind = $mainMod+Shift, T, exec, pkill -x rofi || $scrPath/themeselect.sh # launch theme select menu
bind = $mainMod+Shift, A, exec, pkill -x rofi || $scrPath/rofiselect.sh # launch select menu
bind = $mainMod+Shift, W, exec, pkill -x rofi || $scrPath/swwwallselect.sh # launch wallpaper select menu
bind = $mainMod, V, exec, pkill -x rofi || $scrPath/cliphist.sh -c # launch clipboard
bind = $mainMod+Shift, V, exec, pkill -x rofi || $scrPath/cliphist.sh # launch clipboard Manager
bind = $mainMod+Shift, R, exec, killall rofi || $scrPath/wallbashtoggle.sh -m # launch wallbash mode select menu
bind = $mainMod+Shift, T, exec, killall rofi || $scrPath/themeselect.sh # launch theme select menu
bind = $mainMod+Shift, A, exec, killall rofi || $scrPath/rofiselect.sh # launch select menu
bind = $mainMod+Shift, W, exec, killall rofi || $scrPath/swwwallselect.sh # launch wallpaper select menu
bind = $mainMod, V, exec, killall rofi || $scrPath/cliphist.sh -c # launch clipboard
bind = $mainMod+Shift, V, exec, killall rofi || $scrPath/cliphist.sh # launch clipboard Manager
bind = $mainMod, K, exec, $scrPath/keyboardswitch.sh # switch keyboard layout
bind = $mainMod, slash, exec, pkill -x rofi || $scrPath/keybinds_hint.sh c # launch keybinds hint
bind = $mainMod, comma,exec, pkill -x rofi || $scrPath/emoji-picker.sh # launch emoji picker
bind = $mainMod, period, exec, pkill -x rofi || $scrPath/glyph-picker.sh # launch glyph picker
bind = $mainMod, slash, exec, killall rofi || $scrPath/keybinds_hint.sh c # launch keybinds hint
bind = $mainMod, comma,exec, killall rofi || $scrPath/emoji-picker.sh # launch emoji picker
bind = $mainMod, period, exec, killall rofi || $scrPath/glyph-picker.sh # launch glyph picker

# Move/Change window focus
bind = $mainMod, Left, movefocus, l
Expand Down
28 changes: 14 additions & 14 deletions Configs/.local/share/hyde/templates/hypr/keybindings.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ bindd = Control Shift, Escape, $d system monitor , exec, hyde-shell system.monit

$d=[$l|Rofi menus]
$rofi-launch=hyde-shell rofilaunch
bindd = $mainMod, A, $d application finder , exec, pkill -x rofi || $rofi-launch d
bindd = $mainMod, TAB, $d window switcher , exec, pkill -x rofi || $rofi-launch w
bindd = $mainMod Shift, E, $d file finder , exec, pkill -x rofi || $rofi-launch f
bindd = $mainMod, slash, $d keybindings hint, exec, pkill -x rofi || hyde-shell keybinds_hint c # launch keybinds hint
bindd = $mainMod, comma, $d emoji picker , exec, pkill -x rofi || hyde-shell emoji-picker # launch emoji picker
bindd = $mainMod, period, $d glyph picker , exec, pkill -x rofi || hyde-shell glyph-picker # launch glyph picker
bindd = $mainMod, V, $d clipboard , exec, pkill -x rofi || hyde-shell cliphist -c # launch clipboard,
bindd = $mainMod Shift, V, $d clipboard manager , exec, pkill -x rofi || hyde-shell cliphist # launch clipboard Manager
bindd = $mainMod Shift, A, $d select rofi launcher , exec, pkill -x rofi || hyde-shell rofiselect # launch select menu
bindd = $mainMod, A, $d application finder , exec, killall rofi || $rofi-launch d
bindd = $mainMod, TAB, $d window switcher , exec, killall rofi || $rofi-launch w
bindd = $mainMod Shift, E, $d file finder , exec, killall rofi || $rofi-launch f
bindd = $mainMod, slash, $d keybindings hint, exec, killall rofi || hyde-shell keybinds_hint c # launch keybinds hint
bindd = $mainMod, comma, $d emoji picker , exec, killall rofi || hyde-shell emoji-picker # launch emoji picker
bindd = $mainMod, period, $d glyph picker , exec, killall rofi || hyde-shell glyph-picker # launch glyph picker
bindd = $mainMod, V, $d clipboard , exec, killall rofi || hyde-shell cliphist -c # launch clipboard,
bindd = $mainMod Shift, V, $d clipboard manager , exec, killall rofi || hyde-shell cliphist # launch clipboard Manager
bindd = $mainMod Shift, A, $d select rofi launcher , exec, killall rofi || hyde-shell rofiselect # launch select menu


$hc=Hardware Controls
Expand Down Expand Up @@ -140,13 +140,13 @@ $rice=Theming and Wallpaper
$d=[$rice]
bindd = $mainMod Alt, Right, $d next global wallpaper , exec, hyde-shell wallpaper -Gn # next global wallpaper
bindd = $mainMod Alt, Left, $d previous global wallpaper , exec, hyde-shell wallpaper -Gp # previous global wallpaper
bindd = $mainMod Shift, W, $d select a global wallpaper , exec, pkill -x rofi || hyde-shell wallpaper -SG # launch wallpaper select menu
bindd = $mainMod Shift, W, $d select a global wallpaper , exec, killall rofi || hyde-shell wallpaper -SG # launch wallpaper select menu
bindd = $mainMod Alt, Up, $d next waybar layout , exec, hyde-shell wbarconfgen n # next waybar mode
bindd = $mainMod Alt, Down, $d previous waybar layout , exec, hyde-shell wbarconfgen p # previous waybar mode
bindd = $mainMod Shift, R, $d wallbash mode selector , exec, pkill -x rofi || hyde-shell wallbashtoggle -m # launch wallbash mode select menu
bindd = $mainMod Shift, T, $d select a theme, exec, pkill -x rofi || hyde-shell themeselect # launch theme select menu
bindd = $mainMod+Shift, Y, $d select animations, exec, pkill -x rofi || hyde-shell animations --select # launch animations select menu
bindd = $mainMod+Shift, U, $d select hyprlock layout, exec, pkill -x rofi || hyde-shell hyprlock --select # launch hyprlock layout select menu
bindd = $mainMod Shift, R, $d wallbash mode selector , exec, killall rofi || hyde-shell wallbashtoggle -m # launch wallbash mode select menu
bindd = $mainMod Shift, T, $d select a theme, exec, killall rofi || hyde-shell themeselect # launch theme select menu
bindd = $mainMod+Shift, Y, $d select animations, exec, killall rofi || hyde-shell animations --select # launch animations select menu
bindd = $mainMod+Shift, U, $d select hyprlock layout, exec, killall rofi || hyde-shell hyprlock --select # launch hyprlock layout select menu



Expand Down