Skip to main content

Linux best screen shoot app


Flameshot:Best screen shoot app.

Feature


Debian/Ubuntu

Compilation Dependencies:

apt install git g++ build-essential qt5-qmake qt5-default qttools5-dev-tools

Compilation: run qmake && make in the main directory.

Fedora

Compilation Dependencies:

dnf install qt5-devel gcc-c++ git qt5-qtbase-devel qt5-linguist

Compilation: run qmake-qt5 && make in the main directory.

Arch

Compilation Dependencies:

pacman -S git qt5-base base-devel qt5-tools

Compilation: run qmake && make in the main directory.

Comments

Popular posts from this blog

Connect POSTgreSQL with Django

  First install all necessary step  $ sudo apt-get install python-pip python-dev libpq-dev postgresql postgresql-contrib Second $ sudo su - postgres $ psql Create User name with password  $ CREATE USER user_name WITH PASSWORD ' password ';   Create New Database $ CREATE DATABASE database_name WITH OWNER user_name ; Give permission  $ GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO user_name ; Update settings.py  DATABASES = { ' default ' : { ' ENGINE ' : ' django.db.backends.postgresql_psycopg2 ' , ' NAME ' : 'database_name ' , ' USER ' : ' user_name ' , ' PASSWORD ' : ' password' , ' HOST ' : ' localhost ' , ' PORT ' : ' 5432 ' , } }  Then, python3 manage.py migrate and finally create super user python3 man age.py createsuperuser