How To Install compass-breakpoint-plugin on Kali Linux
Introduction
In this tutorial we learn how to install compass-breakpoint-plugin on Kali Linux.
What is compass-breakpoint-plugin
compass-breakpoint-plugin is:
Breakpoint makes writing media queries in Sass super simple. Create a variable using a simplified syntax based on most commonly used media queries, then call it using the “breakpoint” mixin. Breakpoint handles all of the heavy lifting, from writing the media query itself, to handling cross-browser compatibility issues, so you can focus on what’s important: making sure your website looks its best.
Breakpoint also allows you to get the context of your media queries from your code, allowing you to write dynamic mixins based on their media query context.
Additionally, Breakpoint includes Respond-To syntax for the semantic awesomeness of string names to identify your queries as opposed to variables, and for dynamically generating media queries.
Sass is a pre-processing language for CSS. It allows you to write cleaner stylesheets and makes collaboration on your CSS a breeze.
There are three methods to install compass-breakpoint-plugin on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install compass-breakpoint-plugin Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install compass-breakpoint-plugin using apt-get by running the following command:
sudo apt-get -y install compass-breakpoint-pluginInstall compass-breakpoint-plugin Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install compass-breakpoint-plugin using apt by running the following command:
sudo apt -y install compass-breakpoint-pluginInstall compass-breakpoint-plugin Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install compass-breakpoint-plugin using aptitude by running the following command:
sudo aptitude -y install compass-breakpoint-pluginHow To Uninstall compass-breakpoint-plugin on Kali Linux
To uninstall only the compass-breakpoint-plugin package we can use the following command:
sudo apt-get remove compass-breakpoint-pluginUninstall compass-breakpoint-plugin And Its Dependencies
To uninstall compass-breakpoint-plugin and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove compass-breakpoint-pluginRemove compass-breakpoint-plugin Configurations and Data
To remove compass-breakpoint-plugin configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge compass-breakpoint-pluginRemove compass-breakpoint-plugin configuration, data, and all of its dependencies
We can use the following command to remove compass-breakpoint-plugin configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge compass-breakpoint-pluginDependencies
compass-breakpoint-plugin have the following dependencies:
References
Summary
In this tutorial we learn how to install compass-breakpoint-plugin package on Kali Linux using different package management tools: apt, apt-get and aptitude.