mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-01 18:51:04 +02:00
Merge branch 'master' into feat/networkmanager
This commit is contained in:
commit
30613754ad
14 changed files with 157 additions and 28 deletions
|
@ -22,6 +22,8 @@ pacman -S gtk3 gtk-layer-shell
|
|||
pacman -S openssl
|
||||
# for volume support
|
||||
pacman -S libpulse
|
||||
# for lua/cairo support
|
||||
pacman -S luajit lua51-lgi
|
||||
```
|
||||
|
||||
### Ubuntu/Debian
|
||||
|
@ -32,6 +34,8 @@ apt install build-essential libgtk-3-dev libgtk-layer-shell-dev
|
|||
apt install libssl-dev
|
||||
# for volume support
|
||||
apt install libpulse-dev
|
||||
# for lua/cairo support
|
||||
apt install luajit-dev lua-lgi
|
||||
```
|
||||
|
||||
### Fedora
|
||||
|
@ -42,6 +46,8 @@ dnf install gtk3-devel gtk-layer-shell-devel
|
|||
dnf install openssl-devel
|
||||
# for volume support
|
||||
dnf install libpulseaudio-devel
|
||||
# for lua/cairo support
|
||||
dnf install luajit-devel lua-lgi
|
||||
```
|
||||
|
||||
## Features
|
||||
|
|
|
@ -47,7 +47,7 @@ Supports plain text and images.
|
|||
type = "clipboard"
|
||||
max_items = 3
|
||||
|
||||
[[end.truncate]]
|
||||
[end.truncate]
|
||||
mode = "end"
|
||||
length = 50
|
||||
```
|
||||
|
|
|
@ -18,7 +18,7 @@ Optionally displays a launchable set of favourites.
|
|||
| `show_names` | `boolean` | `false` | Whether to show app names on the button label. Names will still show on tooltips when set to false. |
|
||||
| `show_icons` | `boolean` | `true` | Whether to show app icons on the button. |
|
||||
| `icon_size` | `integer` | `32` | Size to render icon at (image icons only). |
|
||||
|
||||
| `reversed` | `boolean` | `false` | Whether to reverse the order of favorites/items |
|
||||
<details>
|
||||
<summary>JSON</summary>
|
||||
|
||||
|
@ -32,7 +32,8 @@ Optionally displays a launchable set of favourites.
|
|||
"discord"
|
||||
],
|
||||
"show_names": false,
|
||||
"show_icons": true
|
||||
"show_icons": true,
|
||||
"reversed": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -51,6 +52,7 @@ type = "launcher"
|
|||
favorites = ["firefox", "discord"]
|
||||
show_names = false
|
||||
show_icons = true
|
||||
reversed = false
|
||||
```
|
||||
|
||||
</details>
|
||||
|
@ -66,6 +68,7 @@ start:
|
|||
- discord
|
||||
show_names: false
|
||||
show_icons: true
|
||||
reversed: false
|
||||
```
|
||||
|
||||
</details>
|
||||
|
@ -81,7 +84,7 @@ start:
|
|||
favorites = [ "firefox" "discord" ]
|
||||
show_names = false
|
||||
show_icons = true
|
||||
|
||||
reversed = false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ format = "{title} / {artist}"
|
|||
music_dir = "/home/jake/Music"
|
||||
truncate = "end"
|
||||
|
||||
[[start.icons]]
|
||||
[start.icons]
|
||||
play = ""
|
||||
pause = ""
|
||||
```
|
||||
|
|
|
@ -54,7 +54,7 @@ Clicking the widget opens the SwayNC panel.
|
|||
type = "notifications"
|
||||
show_count = true
|
||||
|
||||
[[end.icons]]
|
||||
[end.icons]
|
||||
closed_none = ""
|
||||
closed_some = ""
|
||||
closed_dnd = ""
|
||||
|
|
|
@ -52,7 +52,7 @@ type = "volume"
|
|||
format = "{icon} {percentage}%"
|
||||
max_volume = 100
|
||||
|
||||
[[end.icons]]
|
||||
[end.icons]
|
||||
volume_high = ""
|
||||
volume_medium = ""
|
||||
volume_low = ""
|
||||
|
|
|
@ -48,7 +48,7 @@ type = "workspaces"
|
|||
all_monitors = false
|
||||
favorites = ["1", "2", "3"]
|
||||
|
||||
[[end.name_map]]
|
||||
[end.name_map]
|
||||
1 = ""
|
||||
2 = ""
|
||||
3 = ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue