5 lines
80 B
Bash
5 lines
80 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_gnome_tweaks() {
|
||
|
sudo apt-get install gnome-tweaks -y
|
||
|
}
|