Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronayub/dropit
Lightweight drag-and-drop panel to add functionality to terminal-based file managers. Written in GTK+.
https://github.com/aaronayub/dropit
drag-and-drop drag-drop gtk gtk4 ranger-fm
Last synced: about 2 months ago
JSON representation
Lightweight drag-and-drop panel to add functionality to terminal-based file managers. Written in GTK+.
- Host: GitHub
- URL: https://github.com/aaronayub/dropit
- Owner: aaronayub
- License: gpl-3.0
- Created: 2023-11-16T02:39:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-24T22:56:31.000Z (4 months ago)
- Last Synced: 2024-10-25T09:12:40.811Z (3 months ago)
- Topics: drag-and-drop, drag-drop, gtk, gtk4, ranger-fm
- Language: C
- Homepage:
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Dropit
A lightweight, GTK-based drag-and-drop panel meant to be used with command-line file managers.## Installation
To install this project, run the following.
```
meson setup build
sudo ninja -C build install
```If you only want to build the project, but not install it on your machine, run the following.
```
meson setup build && ninja -C build
```
This will create the executable file 'dropit' in the build directory.## Usage
After installing the program, the program can be run with `dropit {...FILES}`, where the argument is a list of files for which the drag-and-drop panel is created. You may provide the command line option "-a" or "--autoclose" to automatically close the application after a drag-drop operation.## Build Requirements
- GTK >= 4.8.0
- meson## License
Copyright (C) 2023-2024 Aaron AyubThis project and its source code is made available under the GNU GPL version 3.0 only.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .