2021-03-16 00:02:20 -07:00
|
|
|
# File Manager
|
|
|
|
|
2021-05-24 19:01:45 -07:00
|
|
|
Cutefish File Manager, simple to use, beautiful, and retain the classic PC interactive design.
|
2021-03-16 00:02:20 -07:00
|
|
|
|
2021-10-25 00:13:12 -07:00
|
|
|
![screenshot](screenshots/Screenshot_20211025_151224.png)
|
|
|
|
|
2021-03-16 00:02:20 -07:00
|
|
|
## Dependencies
|
|
|
|
|
2021-08-30 09:25:12 -07:00
|
|
|
### Debian/Ubuntu
|
2021-03-29 01:51:34 -07:00
|
|
|
|
|
|
|
```
|
2021-08-30 09:25:12 -07:00
|
|
|
sudo apt install equivs curl git devscripts lintian build-essential automake autotools-dev --no-install-recommends
|
|
|
|
|
|
|
|
sudo mk-build-deps -i -t "apt-get --yes" -r
|
2021-03-29 01:51:34 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
### ArchLinux
|
|
|
|
|
2021-03-16 00:02:20 -07:00
|
|
|
```shell
|
|
|
|
sudo pacman -S extra-cmake-modules qt5-base qt5-quickcontrols2 taglib kio
|
|
|
|
```
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2021-08-14 16:33:01 -07:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
|
2021-03-16 00:02:20 -07:00
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
```shell
|
|
|
|
sudo make install
|
|
|
|
```
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
2021-03-29 01:51:34 -07:00
|
|
|
This project has been licensed by GPLv3.
|