2024-02-20 21:16:07 +01:00
|
|
|
---
|
|
|
|
weight: 10
|
|
|
|
title: Other
|
|
|
|
---
|
|
|
|
|
|
|
|
Here you will find links to some other projects that may not fit into any of the
|
|
|
|
above categories.
|
2022-12-08 13:24:10 +01:00
|
|
|
|
|
|
|
### Workspace management
|
2024-02-20 21:16:07 +01:00
|
|
|
|
|
|
|
[hyprsome](https://github.com/sopa0/hyprsome) by _sopa0_: Awesome-like
|
|
|
|
workspaces for Hyprland.
|
2022-12-08 13:24:10 +01:00
|
|
|
|
|
|
|
### Keyboard layout management
|
2024-02-20 21:16:07 +01:00
|
|
|
|
|
|
|
[hyprland-per-window-layout](https://github.com/coffebar/hyprland-per-window-layout/)
|
|
|
|
by _MahouShoujoMivutilde and coffebar_: Per window keyboard layouts for
|
|
|
|
Hyprland.
|
2022-12-08 13:24:10 +01:00
|
|
|
|
|
|
|
### IPC wrappers
|
2024-02-20 21:16:07 +01:00
|
|
|
|
|
|
|
[hyprland-rs](https://github.com/yavko/hyprland-rs) by _yavko_: A neat wrapper
|
|
|
|
for Hyprland's IPC written in Rust
|
2023-02-12 20:22:04 +01:00
|
|
|
|
2024-01-31 11:57:35 +01:00
|
|
|
### Screen shaders/color temperature
|
2024-02-20 21:16:07 +01:00
|
|
|
|
|
|
|
[hyprshade](https://github.com/loqusion/hyprshade) by _loqusion_: Utility for
|
|
|
|
swapping and scheduling screen shaders; also functions as an
|
|
|
|
[automatic color temperature shifter](https://en.wikipedia.org/wiki/F.lux).
|
2024-01-31 11:57:35 +01:00
|
|
|
|
2024-02-29 16:34:04 +01:00
|
|
|
### Wireless settings
|
|
|
|
- [iwgtk](https://github.com/J-Lentz/iwgtk) by _Jesse Lentz_: WiFi settings frontend for `iwd` in GTK
|
|
|
|
- [blueberry](https://github.com/linuxmint/blueberry) by _Linux Mint_: Bluetooth settings frontend in GTK
|
|
|
|
- [Overskride](https://github.com/kaii-lb/overskride) by _kaii-lb_: A simple yet powerful bluetooth client in GTK4
|
|
|
|
- [nm-applet](https://gitlab.gnome.org/GNOME/network-manager-applet) by _GNOME_: Applet for interfacing with NetworkManager in GTK
|
|
|
|
|
2023-02-12 20:22:04 +01:00
|
|
|
### Automatically Mounting Using `udiskie`
|
|
|
|
|
|
|
|
_Starting method:_ manual ('exec-once')
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
USB Mass storage devices, like thumb drives, mobile phones, digital cameras,
|
|
|
|
etc. do not mount automatically to the file system.
|
2023-02-12 20:22:04 +01:00
|
|
|
|
|
|
|
We generally have to manually mount it, often using root and `umount` to do so.
|
|
|
|
|
|
|
|
Many popular DEs automatically handle this by using `udisks2` wrappers.
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
`udiskie` is a udisks2 front-end that allows to manage removable media such as
|
|
|
|
CDs or flash drives from userspace.
|
2023-02-12 20:22:04 +01:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Install `udiskie` via your repositories, or
|
|
|
|
[build manually](https://github.com/coldfix/udiskie/wiki/installation)
|
2023-02-12 20:22:04 +01:00
|
|
|
|
|
|
|
Head over to your `~/.config/hypr/hyprland.conf` and add the following lines:
|
|
|
|
|
|
|
|
```ini
|
|
|
|
exec-once = udiskie &
|
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
What this does is launches `udiskie` and `&` argument launches it in the
|
|
|
|
background.
|
2023-02-12 20:22:04 +01:00
|
|
|
|
|
|
|
[See more uses here](https://github.com/coldfix/udiskie/wiki/Usage) .
|