12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install phpMyAdmin Dark Theme Windows or Linux</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="PHP,PhpMyAdmin,Dark Theme,Customization,Look And Feel,Web Based Tools,MySQL,DBA,Database Admin,Pmahomme_dark,Linux,Windows,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install phpMyAdmin Dark Theme Windows or Linux">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="05/24/2022 04:30:32 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install phpMyAdmin Dark Theme Windows or Linux</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Install on Linux</h2>
- <ol>
- <li>Log into the Linux device</li>
- <li>Run the following commands in a terminal:
- <div class="codeBlock"># install git<br />
- sudo apt-get install git<br />
- # clone the dark theme from git<br />
- git clone https://github.com/i12bretro/pmahomme-dark.git<br />
- # copy the dark theme to the phpmyadmin themes directory<br />
- sudo cp ./pmahomme-dark /var/www/html/phpmyadmin/themes -r</div>
- </li>
- <li>Log into the phpMyAdmin web interface</li>
- <li>On the main page change the theme to pmahomme_dark</li>
- </ol>
- <h2>Install on Windows</h2>
- <ol>
- <li>Open a web browser and navigate to https://github.com/i12bretro/pmahomme-dark</li>
- <li>Click the Code dropdown > Download ZIP</li>
- <li>Extract the downloaded .zip file</li>
- <li>Copy the entire pmahomme-dark to the phpMyAdmin /themes directory</li>
- <li>Log into the phpMyAdmin web interface</li>
- <li>On the main page change the theme to pmahomme_dark</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|