Add Drawing app to close #528
							parent
							
								
									7270ed7baf
								
							
						
					
					
						commit
						0077e55b82
					
				@ -0,0 +1 @@
 | 
			
		||||
Botspot
 | 
			
		||||
@ -0,0 +1,7 @@
 | 
			
		||||
Simple program used to hand-draw png images.
 | 
			
		||||
 | 
			
		||||
To run: Menu -> Graphics -> Drawing
 | 
			
		||||
To run in terminal: drawing
 | 
			
		||||
 | 
			
		||||
Note: This serves a different purpose than Microsoft Paint. If you want a Paint-style tool, install Kolourpaint:
 | 
			
		||||
sudo apt install kolourpaint
 | 
			
		||||
											
												Binary file not shown.
											
										
									
								| 
		 After Width: | Height: | Size: 924 B  | 
											
												Binary file not shown.
											
										
									
								| 
		 After Width: | Height: | Size: 1.7 KiB  | 
@ -0,0 +1,16 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#PACKAGES FOUND IN: https://launchpad.net/~cartes/+archive/ubuntu/ppa/+packages
 | 
			
		||||
 | 
			
		||||
rm -f ~/drawing.deb
 | 
			
		||||
wget -O ~/drawing.deb https://launchpadlibrarian.net/535392140/drawing_0.8.0-0ubuntu1~focal_armhf.deb || error "Failed to download drawing.deb"
 | 
			
		||||
 | 
			
		||||
sudo apt install -yf ~/drawing.deb || error "APT failed to install drawing.deb"
 | 
			
		||||
rm -f ~/drawing.deb
 | 
			
		||||
@ -0,0 +1,16 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#PACKAGES FOUND IN: https://launchpad.net/~cartes/+archive/ubuntu/ppa/+packages
 | 
			
		||||
 | 
			
		||||
rm -f ~/drawing.deb
 | 
			
		||||
wget -O ~/drawing.deb https://launchpadlibrarian.net/535391982/drawing_0.8.0-0ubuntu1~focal_arm64.deb || error "Failed to download drawing.deb"
 | 
			
		||||
 | 
			
		||||
sudo apt install -yf ~/drawing.deb || error "APT failed to install drawing.deb"
 | 
			
		||||
rm -f ~/drawing.deb
 | 
			
		||||
@ -0,0 +1,9 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
sudo apt purge -y drawing || error "apt failed to uninstall the 'drawing' package."
 | 
			
		||||
@ -0,0 +1 @@
 | 
			
		||||
https://github.com/maoschanz/drawing
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue