Files
rise-cook/rice-cook.py
T
mal0 4326d565d7 Fiexed for Fedora 39
binary is obsolete
added requierements.txt + preinstall.sh
2024-03-28 22:31:30 -04:00

334 lines
12 KiB
Python
Executable File

#!/bin/python3
# Program Shoud run with sudo -HE
# https://github.com/acidburnmonkey
#
import os
import re
import subprocess
import requests
import logging
import gdown
import pyautogui
from rich.console import Console
from rich.theme import Theme
# pylint: disable=subprocess-run-check
# pylint: disable=broad-exception-caught
# pylint: disable=logging-fstring-interpolation
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
formater = logging.Formatter("%(asctime)s | %(levelno)s | %(funcName)s| %(message)s")
f_handler = logging.FileHandler('logg.log')
f_handler.setFormatter(formater)
logger.addHandler(f_handler)
logging.basicConfig(
format="%(asctime)s | %(levelno)s | %(funcName)s| %(message)s ",
filename='logg.log', level=logging.WARNING
)
ap_theme = Theme({'ok':'green', 'error':'red', 'checkt':'bold cyan','promp':'orange1'})
console = Console(theme=ap_theme)
user = os.getlogin()
home = os.path.join('/home',user)
def main():
setup = ''
# confirm_user =''
local_user = user
sudo_check()
console.print(f"Setting up for user {local_user} ", style='promp')
# while(True):
# confirm_user = input(" y/n ")
# if (confirm_user.lower() == 'n'):
# user := input('Type username : ')
# continue
# elif (confirm_user.lower() == 'y'):
# break
#set temporary resolution for sesion
user_answer = input("Set resolution 1920x1080? y/n: ").lower()
console.print("Run aranddr to proper set up", style='ok')
try:
if user_answer == 'y':
os.system('xrandr -s 1920x1080')
except Exception as e:
logging.critical(f"Error at xrandr: {str(e)}")
console.print('optimizing dnf.conf', style='ok')
dnf_config()
install_programs_dnf()
zsh_fonts()
# Pass D or L to copy_dotfiles function
while (True):
console.print('Set up dotfiles for Desktop (D) or Laptop (L) ?', style='promp')
setup = input('>').lower()
if setup == 'l' or setup == 'd':
copy_dotfiles(setup)
break
executable_scripts()
msic_configs()
#correcting ownership
# subprocess.run(f"chown -R {user}:{user} {os.path.join(home,'.config')}",shell=True ,stdout=subprocess.DEVNULL)
console.print("Script done check log and Reboot \n -Run aranddr \n -nitrogen \n -lxappearance", style='checkt')
lock()
subprocess.check_call('lxappearance')
# subprocess.check_call('exec zsh', shell=True)
pyautogui.hotkey('win', 'shift', 'r')
################
# END OF MAIN #
################
def dnf_config():
console.rule("Configuring dnf", style='checkt')
# dnf conf
with open('/etc/dnf/dnf.conf' , 'r+') as f:
text = 'max_parallel_downloads=10 \nfastestmirror=true'
match = re.search(r'(max_parallel_downloads=10)', f.read())
if not match:
with open('/etc/dnf/dnf.conf', 'a+') as f:
f.write(text)
console.print(' changes made to dnf_config :heavy_check_mark:', style='ok')
logger.info('changes made to dnf_config')
else:
console.print(' dnf.conf already optimized :heavy_check_mark:', style='checkt')
subprocess.check_call('sudo dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm',stdout=subprocess.DEVNULL, shell=True)
subprocess.check_call('sudo dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm',stdout=subprocess.DEVNULL, shell=True)
console.print('rpmfusion added to repos :heavy_check_mark:', style='ok')
logger.info('rpmfusion added to repos')
#update Dnf
subprocess.run('dnf upgrade -y', shell=True)
logger.info('Updated Dnf ')
# install programs dnfmax list i can pass to dnf of programs to install
def install_programs_dnf():
console.rule("Installing All Programs DNF ", style='checkt')
programs =[]
with open("data.txt", 'r') as file:
for line in file:
programs.append(line.strip())
#for some reason they have to be passed to dnf individually
# instead of unpacked list *programs
for program in programs:
try:
subprocess.run(f'dnf install -y {program} ', shell=True)
except Exception as e:
console.print(Exception(),":x:" , style='error')
logging.critical(f"Error at Installing programs: {str(e)}")
logger.info('Installed programs in data.txt')
## checks for sudo
def sudo_check():
sudo_user = os.getenv("SUDO_USER")
if sudo_user is None:
console.print("This program must run as sudo -HE ./script ", style='error')
exit()
else:
console.print('ok :heavy_check_mark:', style='ok')
# Oh my zsh setup + flathub
def zsh_fonts():
console.rule("Installing Zsh fonts", style='checkt')
try:
console.print("installing oh my zsh ", style='ok')
#installs oh my zsh
ohmy_url = "https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh"
zsh_installer = requests.get(ohmy_url, timeout=10)
open('install.sh', 'wb').write(zsh_installer.content)
#removing exec line
with open('install.sh', 'r') as f:
contents = f.read()
pattern = r'^\s*exec zsh -l$'
matches = re.findall(pattern, contents, flags=re.MULTILINE)
if matches:
contents = re.sub(pattern, '', contents, flags=re.MULTILINE)
with open('install.sh', 'w') as f:
f.write(contents)
subprocess.run('chmod +x install.sh ', stdout=subprocess.DEVNULL, shell=True, check=True)
subprocess.run(f'sudo -u {user} ./install.sh', shell=True, check=True)
console.print("installing oh my zsh auto sugestions ", style='ok')
# zsh auto sugestions
subprocess.run(f'git clone https://github.com/zsh-users/zsh-autosuggestions {home}/.oh-my-zsh/custom/plugins/zsh-autosuggestions', shell=True)
console.print("installing powerlevel10k ", style='ok')
#powerlevel 10k
subprocess.run(f"git clone --depth=1 https://github.com/romkatv/powerlevel10k.git {home}/.oh-my-zsh/custom/themes/powerlevel10k", shell=True)
logger.info('Installed Oh_my_zsh , powerlevel10k , autosuggestions')
except Exception as e:
logging.warning(f"Could not set up Zsh: {str(e)}")
console.print("Error setting up ohmyzsh :X:", style='error')
console.print("installing flathub", style='ok')
# flathub
subprocess.run('flatpak remote-add --if-not-exists flathub https://flatInstalled programs in data.txthub.org/repo/flathub.flatpakrepo', shell=True, stdout=subprocess.DEVNULL)
logger.info('Installed Flathub')
# copy and override dotfiles
def copy_dotfiles(setup):
console.rule("Copying Dotfiles", style='checkt')
# list of relevant configs
lis = list(next(os.walk('.'))[1])
lis.append('picom.conf')
if ('desktop' in lis):
lis.remove('desktop')
if ( '.git'in lis ):
lis.remove('.git')
if ('.bachrc' in lis):
lis.remove('.bashrc')
if ('.zshrc' in lis) :
lis.remove('.zshrc')
dotfiles_dir = os.getcwd()
destination = os.path.join(home,'.config')
subprocess.run(f"cp -r {os.path.join(dotfiles_dir,'.zshrc')} {home}", shell=True)
if (setup =='l'):
console.print("Setting up dotfiles for Laptop", style='ok')
# copying files recusrsively
for dir in lis:
print(subprocess.run(f'cp -r {dir} {destination}', shell=True))
elif (setup =='d'):
console.print("Setting up dotfiles for Desktop", style='ok')
if ('i3' in lis):
lis.remove('i3')
if ('polybar' in lis):
lis.remove('polybar')
lis.append('desktop/i3')
lis.append('desktop/polybar')
# copying files recusrsively
for dir in lis:
print(subprocess.run(f'cp -r {dir} {destination}', shell=True))
console.print("Dotfiles copied :heavy_check_mark:", style='ok')
logger.info('Dotfiles copied')
def executable_scripts():
console.rule('Making scripts executable', style='checkt')
for root ,_,files in os.walk(os.path.join(home,'.config')):
for element in files:
if '.sh' in element or '.py' in element:
try:
subprocess.run(f"chmod +x {os.path.join(root,element)}", shell=True)
except Exception as e:
logging.critical(f"Error at executable_scripts: {str(e)}")
console.print("Job done :heavy_check_mark:", style='ok')
logger.info('Made scripts in .config executable')
def msic_configs():
console.rule('Setting up final configs', style='checkt')
current_dir = os.getcwd()
try :
os.mkdir('misic')
os.mkdir(os.path.join(home,'.fonts'))
os.mkdir(os.path.join(home,'.themes'))
except FileExistsError:
pass
os.chdir(os.path.join(current_dir,'misic'))
#### Fonts
# https://drive.google.com/drive/folders/1BciF4x3_K3T8p1Y17lHn_xWXnSAZpvDE
fonts_url = 'https://drive.google.com/uc?id=1jebIzgH9BLLn7Ou3xOnSiIj2unIdyXFI'
output ='fonts-c.zip'
gdown.download(fonts_url,output, quiet=False)
subprocess.run(f"unzip {output} -d {os.path.join(home,'.fonts')}",stdout=subprocess.DEVNULL ,shell=True)
subprocess.run("fc-cache -f",stdout=subprocess.DEVNULL ,shell=True)
console.print("Fonts downloaded :heavy_check_mark:", style='ok')
logger.info('Fonts donwloaded ')
#### i3 autotiling
autotiling_url = 'https://raw.githubusercontent.com/nwg-piotr/autotiling/master/autotiling/main.py'
tiler = requests.get(autotiling_url, allow_redirects=True, timeout=10)
open('autotiling', 'wb').write(tiler.content)
subprocess.run('chmod +x autotiling', shell=True, stdout=subprocess.DEVNULL)
subprocess.run('cp autotiling /bin', shell=True, stdout=subprocess.DEVNULL)
console.print("I3 autotliling has been set :heavy_check_mark:", style='ok')
logger.info('I3 autotliling instead')
#Icons
subprocess.run('git clone --depth 1 https://github.com/EliverLara/candy-icons.git /usr/share/icons/candy-icons', shell=True, stdout=subprocess.DEVNULL)
console.print("Icons have been downloaded :heavy_check_mark:", style='ok')
logger.info('candy-icons downloaded')
try:
themes_urls =['https://drive.google.com/uc?id=1KkqC5vaBjePSHxjBI_8PWfm3jNW5gO7k','https://drive.google.com/uc?id=1-qq3wmuQhkKHpW_8OrRNS92AHD9LE4un'
,'https://drive.google.com/uc?id=1mxkN9b4Ws7CeqF_KaTlA3dA5e75UUa4y','https://drive.google.com/uc?id=1cYLRsxmWeQJMOS7QEGEgJenRPKxgwN7X']
for index,file in enumerate(themes_urls):
output = str(index)+'.zip'
gdown.download(file, output ,quiet=False)
subprocess.run(f"unzip {output} -d {os.path.join(home,'.themes')}", shell=True, stdout=subprocess.DEVNULL)
console.print("Themes have been downloaded :heavy_check_mark:", style='ok')
logger.info('Themes have been downloaded')
except Exception as e:
logging.critical(f"Could not get themes :{str(e)}")
console.print("Error with Themes :X:", style='error')
def lock():
console.rule('Setting up lock screen', style='checkt')
#betterlockscreen
subprocess.run('wget https://raw.githubusercontent.com/betterlockscreen/betterlockscreen/main/install.sh -O - -q | sudo bash -s system', shell=True)
console.print('Betterlockscreen installed :heavy_check_mark:', style='ok')
logger.info('betterlockscreen Installed')
#i3lock-color
dependencies =['autoconf', 'automake', 'cairo-devel', 'fontconfig', 'gcc', 'libev-devel', 'libjpeg-turbo-devel', 'libXinerama', 'libxkbcommon-devel', 'libxkbcommon-x11-devel', 'libXrandr', 'pam-devel', 'pkgconf', 'xcb-util-image-devel', 'xcb-util-xrm-devel']
console.print('Installing dependencies ', style='checkt')
for i in dependencies:
subprocess.check_call(f"dnf install -y {i}", shell=True, stdout=subprocess.DEVNULL)
subprocess.run('git clone https://github.com/Raymo111/i3lock-color.git', shell=True)
os.chdir('i3lock-color')
subprocess.run(['./install-i3lock-color.sh'])
console.print('i3lock-color installed :heavy_check_mark:', style='ok')
logger.info('i3lock-color Installed')
if __name__ == '__main__':
main()