Home

Awesome

Screenshot 2024-10-15 010409

Arc Palette

Arc Palette is a community-developed application that applies advanced gradient effects to spaces in the Arc browser.

https://github.com/user-attachments/assets/4941f813-58a0-442c-8528-5540b479c1af

IMPORTANT: Arc must be closed for changes to take effect. So, either use auto restart or close Arc, apply the theme then reopen Arc

Installation

In order to install Arc Palette, simply follow these steps:

Simple Installation (recommended)

This is the easy version of the installation for users that are not experienced with applications such as Command Prompt or Powershell.

Check the Releases tab and find your respective executable (where ARCH is the architecture of your machine):

Place the executable where you want (this does not have to be in the arc folder).

Then, just run the executable (double click on it).

Script Installation (not recommended)

While this still works for now, it's not recommended now that proper executables are built for each release.

Location of installer scripts:

Place the script file where you want to install arc palette (this does not have to be in the arc folder).

Then, just run the script file (double click on it).

Advanced Installation (not recommended for nonprogrammers)

This is version of the installation for more advanced users who know what they are doing when it comes to applications such as Command Prompt and Powershell.

NOTE: Mac users, if you don't already have git installed, you will be prompted to install Xcode, which contains the git program.

  1. Download this GitHub repository as a zip and right-click to extract it, or clone it with the commands below:

    git clone https://github.com/neurokitti/Arc_Palette.git
    cd Arc_Palette
    
  2. Create a virtual environment:

    :: Windows only
    python -m venv .venv
    call .venv\Scripts\activate
    
    # Mac only
    python3 -m venv .venv
    source .venv/bin/activate
    

Download https://github.com/neurokitti/Arc_API as a zip and right-click to extract it inside the Arc_Palette folder (rename Arc_API-main folder to Arc_API), or clone it with the commands below:

git clone https://github.com/neurokitti/Arc_API.git
  1. Install the required packages from requirements.txt and requirements-arc-api:

    :: Windows only
    pip install -r requirements.txt
    pip install -r requirements-win.txt
    pip install -r Arc_API\requirements-arc-api.txt
    
    # Mac only
    pip3 install -r requirements.txt
    pip3 install -r requirements-mac.txt
    pip3 install -r Arc_API/requirements-arc-api.txt
    

Usage

You can run the program by either executing the run_arc_palette script file or using Python in the terminal.

Location of scripts:

Using Python in the terminal:

REM Windows only
call .venv\Scripts\activate
python main.py
# Mac only
source .venv/bin/activate
python3 main.py

Advanced Build executables

If you wish to compile the executables yourself, there are scripts with the pyinstaller command already setup.

However, you must make sure that you've already done a full setup, either from Script Installation or from Advanced Installation.

Then, run the respective script file for building the executable:

After it completes, if successful, there should be a dist folder created with the executable inside (where ARCH is the architecture of your machine):

Credits: