Is there a way to remove title bar in atom-editor in linux - linux

I am trying to remove the title bar on atom in linux. The extensions there seem to offer no help since most of them are mac-oriented. I have found an answer to this here but the code provided does not seem to affect the title-bar, only the editor

As I remember you can remove the title bar by going to Settings>Core>Title Bar.

Related

how to change the button size on title bar on xwayland?

I'm working on a yocto platform with Qt5 + xwayland backend, there is a issue that the buttons on title bar like close/maximum are too small to click, I changed QT_WAYLAND_FORCE_DPI but it only affects the client area but not title bar. and I changed scale in weston.ini but it doesn't work. can anybody give some tips? thanks in advance.
Djiq
Currently I returned to this project and find the way to solve the issue, the title bar is decorated by qt, so just modify the files in wayland/src/plugins/decorations/bradient.

Change Text Highlight Color in Eclipse Console

Question
Is it at all possible to change the color of the text highlight in Eclipse console to something more visible in Manjaro Linux? Your time and help are both much appreciated.
Important notes
I am using the default GTK theme. I do not want to use a different theme.
For testing, I have tried using a different theme, but that didn't help.
Problem
Currently, I am stuck with a barely visible light grey text selection in Eclipse console in the following two scenarios:
When manually selecting text
When using the Find\Replace... search function
Supporting screenshots
Manual mouse text selection:
Find/Replace... selection:
Looking into and changing these settings did not help:
I once ran into the same problem and used the gnome-color-chooser to resolve this issue.
You have to change property selected_bg_color value in your current GTK theme gtkrc file. I am using Ambiance theme.
So my setting are:
cat /usr/share/themes/Ambiance/gtk-2.0/gtkrc | more
gtk-color-scheme = "base_color:#ffffff\nfg_color:#4c4c4c\ntooltip_fg_color:#000000\nselected_bg_color:#f07746\nselected_fg_color:#FFFFFF\ntext_color:#3C3C3C\nbg_color:#F2F1F
0\ntooltip_bg_color:#f5f5c5\nlink_color:#DD4814"
Also refer these post which helps you in future for similar kinds of problems.
Change Eclipse sidebar vertical scope highlighting
eclipse-on-ubuntu-fixing-the-black-background-color-in-hover

Is it possible to remove the title bar in sublime text 3

Is there any way to remove the title bar of Sublime Text 3? Much like how it looks in full screen mode but not needing to be set to full screen is what Im looking for.
I have looked through the settings but cant seem to find anything.
I am using OS X.
Many thanks for your help!

Is it possible in Dreamweaver MX to put my own background color to my code?

In Dreamweaver MX I am trying to go to edit - preferences, but it only target tags and not entire code, can somebody help me please?
The following works in Dreamweaver, as far as I know it should also work way back in Dreamweaver MX (currently 7 versions old), if it is not present, then you can't change the code background color:
Edit (Dreamweaver on Mac) -> Preferences, Code Coloring category. Change the value for "Default background" to modify code view background color.

PyQT Remove the programs Title Bar?

hi does anybody knows how to remove the programs title bar? (In PyQT or in Designer)
my goal is i need to replace it with my own title bar.
thanks to anyone who can help me.
The title bar is managed by the window manager and not by the application.
Therefore you can not modify the title bar with the Qt Designer.
You can hide the title bar with widget.setWindowFlags(QtCore.Qt.CustomizeWindowHint) or widget.setWindowFlags(QtCore.Qt.FramelessWindowHint).
These and other options are described in the Qt documentation (Qt Namespace).
The Qt Window Flags Example makes them easier to understand.
This problem looks similar to yours: Qt4 custom window frames like in office 2007?
See also: How can I hide/delete the "?" help button on the "title bar" of a QT Dialog?

Resources