replace hyprexpo with hyprtasking
This commit is contained in:
parent
faefbbf94d
commit
e3b29d72c8
3 changed files with 41 additions and 12 deletions
|
@ -6,7 +6,17 @@
|
||||||
#$mainMod = SUPER # Sets "Windows" key as main modifier
|
#$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||||
$mainMod = Alt
|
$mainMod = Alt
|
||||||
|
|
||||||
bind = $mainMod, Tab, hyprexpo:expo, toggle # can be: toggle, off/disable or on/enable
|
bind = $mainMod, tab, hyprtasking:toggle, cursor
|
||||||
|
bind = $mainMod, space, hyprtasking:toggle, all
|
||||||
|
# NOTE: the lack of a comma after hyprtasking:toggle!
|
||||||
|
bind = , escape, hyprtasking:if_active, hyprtasking:toggle cursor
|
||||||
|
|
||||||
|
bind = $mainMod, X, hyprtasking:killhovered
|
||||||
|
|
||||||
|
bind = $mainMod, H, hyprtasking:move, left
|
||||||
|
bind = $mainMod, J, hyprtasking:move, down
|
||||||
|
bind = $mainMod, K, hyprtasking:move, up
|
||||||
|
bind = $mainMod, L, hyprtasking:move, right
|
||||||
|
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
bind = $mainMod, Return, exec, $terminal
|
bind = $mainMod, Return, exec, $terminal
|
||||||
|
|
|
@ -123,15 +123,34 @@ binds {
|
||||||
}
|
}
|
||||||
|
|
||||||
plugin {
|
plugin {
|
||||||
hyprexpo {
|
hyprtasking {
|
||||||
columns = 3
|
layout = grid
|
||||||
gap_size = 5
|
|
||||||
bg_col = rgb(111111)
|
|
||||||
workspace_method = center current # [center/first] [workspace] e.g. first 1 or center m+1
|
|
||||||
|
|
||||||
enable_gesture = true # laptop touchpad
|
gap_size = 20
|
||||||
gesture_fingers = 3 # 3 or 4
|
bg_color = 0xff26233a
|
||||||
gesture_distance = 300 # how far is the "max"
|
border_size = 4
|
||||||
gesture_positive = true # positive = swipe down. Negative = swipe up.
|
exit_on_hovered = false
|
||||||
|
|
||||||
|
gestures {
|
||||||
|
enabled = true
|
||||||
|
move_fingers = 3
|
||||||
|
move_distance = 300
|
||||||
|
open_fingers = 4
|
||||||
|
open_distance = 300
|
||||||
|
open_positive = true
|
||||||
|
}
|
||||||
|
|
||||||
|
grid {
|
||||||
|
rows = 3
|
||||||
|
cols = 3
|
||||||
|
loop = false
|
||||||
|
gaps_use_aspect_ratio = false
|
||||||
|
}
|
||||||
|
|
||||||
|
linear {
|
||||||
|
height = 400
|
||||||
|
scroll_speed = 1.0
|
||||||
|
blur = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,8 +101,8 @@ hyprpm_update_plugin() {
|
||||||
hyprpm update
|
hyprpm update
|
||||||
### Funktionsaufruf mit mehreren Plugins
|
### Funktionsaufruf mit mehreren Plugins
|
||||||
hyprpm_update_plugin \
|
hyprpm_update_plugin \
|
||||||
"https://github.com/hyprwm/hyprland-plugins" \
|
"https://github.com/raybbian/hyprtasking" \
|
||||||
"hyprexpo"
|
"hyprtasking"
|
||||||
|
|
||||||
## VSCodium
|
## VSCodium
|
||||||
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
|
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
|
||||||
|
|
Loading…
Add table
Reference in a new issue