Fix shellcheck warnings and optimize code blocks (#194)

This commit is contained in:
Lennard Hofmann 2023-04-23 22:20:55 +02:00 committed by GitHub
parent f3e021b07a
commit 66c5100026
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 26 additions and 25 deletions

View File

@ -12,8 +12,8 @@ to react to different events. See its description
This bash script will change the outer gaps to 20 if the currently focused This bash script will change the outer gaps to 20 if the currently focused
monitor is DP-1, and 30 otherwise. monitor is DP-1, and 30 otherwise.
```sh ```bash
#!/bin/sh #!/bin/bash
function handle { function handle {
if [[ ${1:0:10} == "focusedmon" ]]; then if [[ ${1:0:10} == "focusedmon" ]]; then
@ -25,5 +25,5 @@ function handle {
fi fi
} }
socat - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done socat - "UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" | while read -r line; do handle "$line"; done
``` ```

View File

@ -58,8 +58,8 @@ Steam will exit entirely when it's last window is closed using the `killactive`
To minimize Steam to tray, use the following script to close applications: To minimize Steam to tray, use the following script to close applications:
```sh ```sh
if [[ $(hyprctl activewindow -j | jq -r ".class") == "Steam" ]]; then if [ "$(hyprctl activewindow -j | jq -r ".class")" = "Steam" ]; then
xdotool windowunmap $(xdotool getactivewindow) xdotool getactivewindow windowunmap
else else
hyprctl dispatch killactive "" hyprctl dispatch killactive ""
fi fi
@ -122,8 +122,8 @@ For increased performance in games, or for less distractions at a keypress
```bash ```bash
#!/usr/bin/env sh #!/usr/bin/env sh
HYPRGAMEMODE=$(hyprctl getoption animations:enabled | sed -n '2p' | awk '{print $2}') HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==2{print $2}')
if [ $HYPRGAMEMODE = 1 ] ; then if [ "$HYPRGAMEMODE" = 1 ] ; then
hyprctl --batch "\ hyprctl --batch "\
keyword animations:enabled 0;\ keyword animations:enabled 0;\
keyword decoration:drop_shadow 0;\ keyword decoration:drop_shadow 0;\

View File

@ -157,7 +157,7 @@ input {
Sets the hyprctl error string. Will reset when Hyprland's config is reloaded. Sets the hyprctl error string. Will reset when Hyprland's config is reloaded.
```sh ```sh
hyprctl seterror rgba(66ee66ff) hello world this is my problem hyprctl seterror 'rgba(66ee66ff)' hello world this is my problem
``` ```
or disable: or disable:

View File

@ -66,7 +66,7 @@ the dump. See the instructions below for more info about `coredumpctl`.
You can also use the amazing command You can also use the amazing command
```sh ```sh
watch -n 0.1 "cat /tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/hyprland.log | grep -v \"arranged\" | tail -n 40" watch -n 0.1 "grep -v \"arranged\" /tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/hyprland.log | tail -n 40"
``` ```
for live logs. (replace `hyprland` with `hyprlandd` for debug builds) for live logs. (replace `hyprland` with `hyprlandd` for debug builds)

View File

@ -194,19 +194,19 @@ exec-once=handle_monitor_connect.sh
where `handle_monitor_connect.sh` is: (example) where `handle_monitor_connect.sh` is: (example)
```bash ```sh
#!/bin/sh #!/bin/sh
function handle { handle() {
if [[ ${1:0:12} == "monitoradded" ]]; then case $1 in monitoradded*)
hyprctl dispatch moveworkspacetomonitor "1 1" hyprctl dispatch moveworkspacetomonitor "1 1"
hyprctl dispatch moveworkspacetomonitor "2 1" hyprctl dispatch moveworkspacetomonitor "2 1"
hyprctl dispatch moveworkspacetomonitor "4 1" hyprctl dispatch moveworkspacetomonitor "4 1"
hyprctl dispatch moveworkspacetomonitor "5 1" hyprctl dispatch moveworkspacetomonitor "5 1"
fi esac
} }
socat - UNIX-CONNECT:/tmp/hypr/.socket2.sock | while read line; do handle $line; done socat - UNIX-CONNECT:/tmp/hypr/.socket2.sock | while read -r line; do handle "$line"; done
``` ```
if you want workspaces 1 2 4 5 to go to monitor 1 when connecting it. if you want workspaces 1 2 4 5 to go to monitor 1 when connecting it.

View File

@ -63,11 +63,12 @@ example script using socket2 events with bash and `socat`:
```sh ```sh
#!/bin/sh #!/bin/sh
function handle { handle() {
if [[ ${1:0:12} == "monitoradded" ]]; then case $1 in
# do_something monitoradded*) do_something ;;
fi focusedmon*) do_something_else ;;
esac
} }
socat -U - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done socat -U - UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock | while read -r line; do handle "$line"; done
``` ```

View File

@ -78,7 +78,7 @@ patch wlroots.
If you're using Nix (and not NixOS or Home Manager) and you want to override, If you're using Nix (and not NixOS or Home Manager) and you want to override,
you can do it like this you can do it like this
```sh ```console
$ nix repl $ nix repl
nix-repl> :lf "github:hyprwm/Hyprland" nix-repl> :lf "github:hyprwm/Hyprland"
nix-repl> :bl outputs.packages.x86_64-linux.hyprland.override {nvidiaPatches = true;} # option = value nix-repl> :bl outputs.packages.x86_64-linux.hyprland.override {nvidiaPatches = true;} # option = value

View File

@ -139,7 +139,7 @@ fi
```sh ```sh
#!/bin/bash #!/bin/bash
hyprctl monitors -j | jq --raw-output .[0].activeWorkspace.id hyprctl monitors -j | jq --raw-output .[0].activeWorkspace.id
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | stdbuf -o0 grep '^workspace>>' | stdbuf -o0 awk -F '>>|,' '{print $2}' socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | stdbuf -o0 awk -F '>>|,' '/^workspace>>/{print $2}'
``` ```
### `~/.config/eww/scripts/get-workspaces` ### `~/.config/eww/scripts/get-workspaces`
@ -163,13 +163,13 @@ done
<details> <details>
<summary>Active window title widget</summary> <summary>Active window title widget</summary>
This widget simply displays the title of the active window. It requires [bash](https://linux.die.net/man/1/bash), [awk](https://linux.die.net/man/1/awk), [stdbuf](https://linux.die.net/man/1/stdbuf), [grep](https://linux.die.net/man/1/grep), [socat](https://linux.die.net/man/1/socat), and [jq](https://stedolan.github.io/jq/). This widget simply displays the title of the active window. It requires [awk](https://linux.die.net/man/1/awk), [stdbuf](https://linux.die.net/man/1/stdbuf), [socat](https://linux.die.net/man/1/socat), and [jq](https://stedolan.github.io/jq/).
### `~/.config/eww/eww.yuck` ### `~/.config/eww/eww.yuck`
```lisp ```lisp
... ...
(deflisten window :initial "..." "bash ~/.config/eww/scripts/get-window-title") (deflisten window :initial "..." "sh ~/.config/eww/scripts/get-window-title")
(defwidget window_w [] (defwidget window_w []
(box (box
(label :text "${window}" (label :text "${window}"
@ -181,9 +181,9 @@ This widget simply displays the title of the active window. It requires [bash](h
### `~/.config/eww/scripts/get-window-title` ### `~/.config/eww/scripts/get-window-title`
```sh ```sh
#!/bin/bash #!/bin/sh
hyprctl activewindow -j | jq --raw-output .title hyprctl activewindow -j | jq --raw-output .title
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | stdbuf -o0 grep '^activewindow>>' | stdbuf -o0 awk -F '>>|,' '{print $3}' socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | stdbuf -o0 awk -F '>>|,' '/^activewindow>>/{print $3}'
``` ```
</details> </details>