Skip to content

Commit 1f8c36b

Browse files
Merge pull request #19 from armandwipangestu/main
Move Source Code to Specific Branch
2 parents 753ecc1 + 7449050 commit 1f8c36b

File tree

5 files changed

+111
-1534
lines changed

5 files changed

+111
-1534
lines changed

Makefile

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 111 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,126 @@
33

44
<p align="center">
55
<a href="./LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
6-
<a href="https://github.com/mayTermux/awesomeshot/releases"><img src="https://img.shields.io/github/release/mayTermux/awesomeshot.svg"></a>
6+
<a href="https://github.com/Awesomesh0t/awesomeshot/releases"><img src="https://img.shields.io/github/release/Awesomesh0t/awesomeshot.svg"></a>
77
</p>
88

99
Awesomeshot is command-line screenshot tool written in bash 5.1.16+. Awesomeshot editing automatically your screenshot.
1010

1111
<img src="https://user-images.githubusercontent.com/64394320/170211137-554dfd78-8424-4699-876c-7483b45de068.png" alt="awesomeshot">
1212

13-
## More:
14-
- [Wiki](https://github.com/mayTermux/awesomeshot/wiki)
15-
- [Dependencies](https://github.com/mayTermux/awesomeshot/wiki/Dependencies)
16-
- [Installation & Uninstallation](https://github.com/mayTermux/awesomeshot/wiki/Installation-&-Uninstallation)
17-
- [Customizing Config File](https://github.com/mayTermux/awesomeshot/wiki/Customizing-Config-File)
13+
## Dependencies
14+
15+
<details>
16+
<summary>Arch Linux</summary>
17+
18+
### Packages
19+
20+
```bash
21+
sudo pacman -S imagemagick flameshot dunst bc make
22+
```
23+
24+
</details>
25+
26+
<details>
27+
<summary>Termux</summary>
28+
29+
### Application
30+
31+
- [Termux:API](https://f-droid.org/en/packages/com.termux.api/)
32+
33+
> Optional
34+
35+
- [Screen Master](https://play.google.com/store/apps/details?id=pro.capture.screenshot)
36+
37+
### Packages
38+
39+
```bash
40+
pkg i -y termux-api imagemagick inotify-tools bc make
41+
```
42+
43+
</details>
44+
45+
## Installation
46+
47+
<details>
48+
<summary>Arch Linux</summary>
49+
50+
### Download or Clone
51+
52+
- Download or clone the latest release.
53+
<br>
54+
55+
```bash
56+
git clone -b linux https://github.com/Awesomesh0t/awesomeshot
57+
```
58+
59+
- Run `make install` inside the script directory to install the script.
60+
<br>
61+
62+
```bash
63+
sudo make install
64+
```
65+
66+
</details>
67+
68+
<details>
69+
<summary>Termux</summary>
70+
71+
### Download or Clone
72+
73+
- Download or clone the latest release.
74+
<br>
75+
76+
```bash
77+
git clone -b termux https://github.com/Awesomesh0t/awesomeshot
78+
```
79+
80+
- Run `make install` inside the script directory to install the script.
81+
<br>
82+
83+
```bash
84+
make install
85+
```
86+
87+
</details>
88+
89+
## Uninstallation
90+
91+
> Run `make uninstall` inside the script directory to uninstall the script.
92+
>
93+
> _NOTE_: for linux user need `sudo` command
94+
95+
```bash
96+
make uninstall
97+
```
98+
99+
## More:
100+
101+
- [Wiki](https://github.com/Awesomesh0t/awesomeshot/wiki)
102+
- [Customizing Config File](https://github.com/Awesomesh0t/awesomeshot/wiki/Customizing-Config-File)
103+
104+
## Preview
105+
106+
- Linux
107+
108+
https://user-images.githubusercontent.com/64394320/188277211-e4414d4e-e412-400e-8364-4162ca345d09.mp4
18109

19110
## How awesomeshot work?
20-
- [https://github.com/mayTermux/awesomeshot/issues/2#issuecomment-1052047095](https://github.com/mayTermux/awesomeshot/issues/2#issuecomment-1052047095)
111+
112+
- [How do i actually use this?](https://github.com/Awesomesh0t/awesomeshot/issues/2#issuecomment-1052047095)
21113

22114
## Showcase
23-
**Upload your custom config or script `Awesomeshot` [here](https://github.com/mayTermux/awesomeshot/issues/4)**
24115

25-
## Credits
26-
- [https://bandithijo.github.io/blog/memodifikasi-screenshot-dari-flameshot-dengan-imagemagick](https://bandithijo.github.io/blog/memodifikasi-screenshot-dari-flameshot-dengan-imagemagick)
27-
- [https://github.com/berrabe/awesome-flameshot](https://github.com/berrabe/awesome-flameshot)
28-
- [https://github.com/lwotcynna/shot-magick](https://github.com/lwotcynna/shot-magick)
116+
**Upload your custom config or script `Awesomeshot` [here](https://github.com/Awesomesh0t/awesomeshot/issues/4)**
117+
118+
## Acknowledgements
119+
120+
| Inspiration and Resources |
121+
| --------------------------------------------------------------------------------------------------------- |
122+
| [Bandithijo](https://bandithijo.github.io/blog/memodifikasi-screenshot-dari-flameshot-dengan-imagemagick) |
123+
| [berrabe/awesome-flameshot](https://github.com/berrabe/awesome-flameshot) |
124+
| [lwotcynna/shot-magick](https://github.com/lwotcynna/shot-magick) |
29125

30-
## Contributors
31-
- [usernob](https://github.com/usernob) - [Title Bar](https://github.com/mayTermux/awesomeshot/pull/5)
126+
| **Contributors** | **Contributions** |
127+
| ------------------------------------- | -------------------------------------------------------------- |
128+
| [usernob](https://github.com/usernob) | [Title Bar](https://github.com/Awesomesh0t/awesomeshot/pull/5) |

0 commit comments

Comments
 (0)