vincelwt/chatgpt-mac

The hamburger menu is not displayed.

sekinekh opened this issue · 1 comments

Hi, how do you get the hamburger menu in the screenshot to show up?

As a workaround, you can open "Show Package Contents" of the app, then go to Contents -> Resources -> app and edit index.html. Change <script></script> portion to

<script> const webview = document.getElementById('webview'); webview.addEventListener('dom-ready', function() { // hide message below text input, sidebar, suggestions on new chat webview.insertCSS(` .text-xs.text-center { opacity: 0; height: 0; margin-bottom: -10px; } .bg-gray-800 { background-color: transparent !important;} .text-gray-200 { color: inherit !important; } h1,h2{ opacity:0; } [class*="shared__Wrapper"] { align-items: center; justify-content: center; text-align: center; margin-top: 15vh; } [class*="shared__Wrapper"] h3 { margin-top: -40px; font-size: 20px; } `) const element = webview.executeJavaScript(` document.querySelector("[class*='shared__Wrapper']").innerHTML += "Start by asking anything." `); }); </script>

After you reload, you'll have the hamburger menu and a new conversation button