63 lines
3.1 KiB
Markdown
63 lines
3.1 KiB
Markdown
# KShare
|
|
A [ShareX](https://getsharex.com/) inspired cross platform utility written with Qt.
|
|
Originally written by [ArsenArsen](https://github.com/ArsenArsen) and here enhanced with [these](https://github.com/Gurkengewuerz/KShare/projects/1) features.
|
|
|
|
| | Linux | Windows |
|
|
|--------|-------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
| master | [![CircleCI](https://circleci.com/gh/Gurkengewuerz/KShare/tree/master.svg?style=svg)](https://circleci.com/gh/Gurkengewuerz/KShare/tree/master) | [![Build status](https://ci.appveyor.com/api/projects/status/ujxmg1dk7f5p8ijh/branch/master?svg=true)](https://ci.appveyor.com/project/Gurkengewuerz/kshare/branch/master) |
|
|
| dev | [![CircleCI](https://circleci.com/gh/Gurkengewuerz/KShare/tree/dev.svg?style=svg)](https://circleci.com/gh/Gurkengewuerz/KShare/tree/dev) | [![Build status](https://ci.appveyor.com/api/projects/status/ujxmg1dk7f5p8ijh/branch/dev?svg=true)](https://ci.appveyor.com/project/Gurkengewuerz/kshare/branch/dev) |
|
|
|
|
## Screenshot
|
|
Made with KShare itself, of course :)
|
|
![](https://i.imgur.com/oJrCNkq.png)
|
|
|
|
## Usage
|
|
See the [wiki](https://github.com/ArsenArsen/KShare/wiki).
|
|
Please note that KShare is not compatiable with Wayland due to some permission issues. Please use X.Org instead.
|
|
|
|
## Dependencies
|
|
* Qt 5 Widgets
|
|
* Qt 5 GUI
|
|
* Qt 5 Network
|
|
* Qt 5 Multimedia
|
|
* Qt 5 X11Extras | Winextras
|
|
* [QHotkey](https://github.com/Skycoder42/QHotkey)
|
|
* libavformat
|
|
* libavcodec
|
|
* libavutil
|
|
* libswscale
|
|
|
|
Additionally, on Linux, you require:
|
|
* XCB
|
|
* XCB xfixes
|
|
* XCB cursor
|
|
* libnotify
|
|
|
|
Despite the name implying so, this project does not depend on the KDE API at all.
|
|
|
|
## Install
|
|
|Distro|Link|
|
|
|:----:|:--:|
|
|
|Arch Linux (development)|[kshare-git](https://aur.archlinux.org/packages/kshare-git/)|
|
|
|Ubuntu/Debian (development)|[.deb](https://nativeci.arsenarsen.com/job/KShare%20\(dev\)/main=linux/lastSuccessfulBuild/artifact/packages/simpleName.deb)|
|
|
|Arch Linux |[kshare](https://aur.archlinux.org/packages/kshare/)|
|
|
|Ubuntu/Debian |[.deb](https://nativeci.arsenarsen.com/job/KShare%20\(master\)/main=linux/lastSuccessfulBuild/artifact/packages/simpleName.deb)|
|
|
|
|
For other UNIX-like platforms, and MSYS2 (for Windows):
|
|
|
|
You have to obtain the dependencies though.
|
|
```bash
|
|
git clone --recursive https://github.com/ArsenArsen/KShare.git
|
|
cd KShare
|
|
qmake # Might be qmake-qt5 on your system
|
|
make
|
|
```
|
|
|
|
On systems with FFMpeg pre-3.1 you need to apply `OlderSystemFix.patch` to `src/recording/encoders/encoder.cpp`.
|
|
On systems with Qt pre-5.7 you need to install the Qt version from their website.
|
|
You can attempt to `curl https://raw.githubusercontent.com/ArsenArsen/KShare/master/install.sh | bash`
|
|
|
|
You can find more details [here](https://blog.arsenarsen.com/posts/compiling-kshare-on-linux-mac-os-x-and-windows-final-revision)
|
|
|
|
###### Started on 19th of April 2017 by [ArsenArsen](https://github.com/ArsenArsen) to bring some attention and improvement to Linux screenshotting.
|