mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2025-12-20 11:40:02 +01:00
Alt Tab Behaviour uses XDG_RUNTIME_DIR instead of /tmp to support multiple users on the same machine
This commit is contained in:
parent
d8623b26e8
commit
1233c12fe8
1 changed files with 5 additions and 5 deletions
|
|
@ -338,7 +338,7 @@ address=$(hyprctl -j clients | jq -r 'sort_by(.focusHistoryID) | .[] | select(.w
|
||||||
awk -F"\t" '{print $1}')
|
awk -F"\t" '{print $1}')
|
||||||
|
|
||||||
if [ -n "$address" ] ; then
|
if [ -n "$address" ] ; then
|
||||||
echo "$address" > /tmp/alttab/address
|
echo "$address" > $XDG_RUNTIME_DIR/hypr/alttab/address
|
||||||
fi
|
fi
|
||||||
|
|
||||||
hyprctl -q dispatch submap reset
|
hyprctl -q dispatch submap reset
|
||||||
|
|
@ -355,8 +355,8 @@ line="$1"
|
||||||
IFS=$'\t' read -r addr _ <<< "$line"
|
IFS=$'\t' read -r addr _ <<< "$line"
|
||||||
dim=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}
|
dim=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}
|
||||||
|
|
||||||
grim -t png -l 0 -w "$addr" /tmp/alttab/preview.png
|
grim -t png -l 0 -w "$addr" $XDG_RUNTIME_DIR/hypr/alttab/preview.png
|
||||||
chafa --animate false --dither=none -s "$dim" "/tmp/alttab/preview.png"
|
chafa --animate false --dither=none -s "$dim" "$XDG_RUNTIME_DIR/hypr/alttab/preview.png"
|
||||||
```
|
```
|
||||||
|
|
||||||
4. create file `touch $XDG_CONFIG_HOME/hypr/scripts/alttab/disable.sh && chmod +x $XDG_CONFIG_HOME/hypr/scripts/alttab/disable.sh` and add:
|
4. create file `touch $XDG_CONFIG_HOME/hypr/scripts/alttab/disable.sh && chmod +x $XDG_CONFIG_HOME/hypr/scripts/alttab/disable.sh` and add:
|
||||||
|
|
@ -371,10 +371,10 @@ hyprctl -q --batch "keyword unbind ALT, TAB ; keyword unbind ALT SHIFT, TAB ; ke
|
||||||
5. create file `touch $XDG_CONFIG_HOME/hypr/scripts/alttab/enable.sh && chmod +x $XDG_CONFIG_HOME/hypr/scripts/alttab/enable.sh` and add:
|
5. create file `touch $XDG_CONFIG_HOME/hypr/scripts/alttab/enable.sh && chmod +x $XDG_CONFIG_HOME/hypr/scripts/alttab/enable.sh` and add:
|
||||||
```bash {filename="enable.sh"}
|
```bash {filename="enable.sh"}
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
mkdir -p /tmp/alttab
|
mkdir -p $XDG_RUNTIME_DIR/hypr/alttab
|
||||||
hyprctl -q --batch "keyword animations:enabled false; keyword unbind ALT, TAB ; keyword unbind ALT SHIFT, TAB"
|
hyprctl -q --batch "keyword animations:enabled false; keyword unbind ALT, TAB ; keyword unbind ALT SHIFT, TAB"
|
||||||
footclient -a alttab $HOME/.config/hypr/scripts/alttab/alttab.sh $1
|
footclient -a alttab $HOME/.config/hypr/scripts/alttab/alttab.sh $1
|
||||||
hyprctl --batch -q "dispatch focuswindow address:$(cat /tmp/alttab/address) ; dispatch alterzorder top"
|
hyprctl --batch -q "dispatch focuswindow address:$(cat $XDG_RUNTIME_DIR/hypr/alttab/address) ; dispatch alterzorder top"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Config versioning
|
## Config versioning
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue