36 lines
660 B
Markdown
36 lines
660 B
Markdown
|
|
# Responsively
|
||
|
|
|
||
|
|
|
||
|
|
## Install
|
||
|
|
|
||
|
|
[Responsively](https://responsively.app/)
|
||
|
|
|
||
|
|
```sh
|
||
|
|
wget https://github.com/responsively-org/responsively-app-releases/releases/download/v1.16.0/ResponsivelyApp-1.16.0.AppImage
|
||
|
|
|
||
|
|
chmod +x ResponsivelyApp-1.16.0.AppImage
|
||
|
|
mv ResponsivelyApp-1.16.0.AppImage ResponsivelyApp.AppImage
|
||
|
|
mkdir -p ~/.local/bin/
|
||
|
|
mv ResponsivelyApp.AppImage ~/.local/bin/
|
||
|
|
```
|
||
|
|
|
||
|
|
## Config
|
||
|
|
|
||
|
|
```sh
|
||
|
|
nano ~/.local/share/applications/responsively.desktop
|
||
|
|
|
||
|
|
|
||
|
|
[Desktop Entry]
|
||
|
|
Name=Responsively App
|
||
|
|
Exec=/home/your-username/.local/bin/ResponsivelyApp.AppImage
|
||
|
|
Icon=web
|
||
|
|
Type=Application
|
||
|
|
Categories=Development;
|
||
|
|
```
|
||
|
|
|
||
|
|
## Execute
|
||
|
|
```
|
||
|
|
~/.local/bin/ResponsivelyApp.AppImage
|
||
|
|
```
|
||
|
|
|