-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README: add table with tools, descriptions and maintainers
- Loading branch information
Showing
6 changed files
with
95 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Grimblast | ||
|
||
A Hyprland version of Grimshot. | ||
|
||
Install by running the Makefile or just copying the `grimblast` script in your | ||
`~/.bin`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# hdrop | ||
|
||
This script emulates the main features of | ||
[tdrop](https://github.com/noctuid/tdrop) in Hyprland: | ||
|
||
- if the specified program is not running: launch it and bring it to the | ||
foreground. | ||
- if the specified program is already running on another workspace: bring it to | ||
the current workspace and focus it. | ||
- if the specified program is already on the current workspace: move it to | ||
workspace 'special:hdrop', thereby hiding it until called up again by hdrop. | ||
|
||
#### Usage: | ||
|
||
> hdrop [OPTIONS] [COMMAND] | ||
#### Arguments: | ||
|
||
> [COMMAND]\ | ||
> The usual command you would run to start the desired program | ||
#### Options: | ||
|
||
> -b, --background\ | ||
> changes the default behaviour: if the specified program is not running, launch | ||
> it in the background instead of foreground. Thereafter 'hdrop -b' will work | ||
> the same as without this flag. | ||
> | ||
> -h, --help\ | ||
> Print this help message | ||
> | ||
> -V, --version\ | ||
> Print version | ||
See man page for further information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Scratchpad | ||
|
||
A Bash script that instantly sends focused window to a special workspace named | ||
`scratchpad` and makes it easier to retrieve the window back to the current | ||
workspace. | ||
|
||
Install by running the Makefile `sudo make install` Uninstall by running the | ||
Makefile `sudo make uninstall` | ||
|
||
Usage: | ||
|
||
To send the window to scratchpad | ||
|
||
> bind = SUPER, s, exec, scratchpad | ||
To get back the window >bind = SUPERSHIFT, s, exec, scratchpad -g | ||
|
||
use `-h` flag to get help. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# shellevents | ||
|
||
Invoke shell functions in response to Hyprland socket2 events. Install with | ||
`make install`. | ||
|
||
See `shellevents_default.sh` for the supported function names. Example event | ||
files can be found in `submaps.sh` and `notifywindow.sh`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# try_swap_workspace | ||
|
||
Inspired from | ||
[this discussion on the hyprland repository](https://github.com/hyprwm/Hyprland/discussions/835) | ||
try_swap_workspace is a binding to mimic the 'arbitrary workspace on arbitrary | ||
monitor' behavior known from may window managers. This means: | ||
|
||
- if a workspace is not displayed on any monitor and should be displayed, it | ||
gets displayed on the currently focused monitor | ||
- if a workspace is already displayed on another monitor and should displayed on | ||
the currently focused monitor, the displayed workspace on the focused monitor | ||
will be swapped with the workspace on the monitor that should be displayed on | ||
the focused monitor | ||
|
||
Install by running the Makefile `sudo make install` Uninstall by running the | ||
Makefile `sudo make uninstall` |