Shqyrtime për hide the titlebar
hide the titlebar nga nanpuyue
Shqyrtim nga 13444744 përdoruesi Firefox-i
Vlerësuar me 2 yje nga 5 të mundshëm
nga 13444744 përdoruesi Firefox-i, 7 vite më parëThe main reason to hide title bar for me is the possibility to not care about Y direction of mouse pointer when I clicking on tabs. Because, in Chrome its tabs start from the TOP of the screen. BUT!!! In this add-on there is a still 1 pixel distance between the top of the screen and the tab!! And I must care about Y position of a mouse pointer to it will not be at this 1 pixel line on the top, it must be little bit down to I can click on tab. And this is VERY bad.
28 shqyrtime
- Vlerësuar me 5 yje nga 5 të mundshëmnga Olli Copperwolf, 9 muaj më parëIt works very well and ditches the title bar. In management of extensions in Firefox, there are 3 urls that give you max, min, and close as well. Since they were all made by the same person, it seems they are referred at the bottom of the install page. So, easy peasy stuff here...
- Vlerësuar me 5 yje nga 5 të mundshëmnga Kurotaku, 4 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga Łukasz Polowczyk, 5 vite më parëRescue with a broken window manager. Thanks.
- Vlerësuar me 5 yje nga 5 të mundshëmnga 16185473 përdoruesi Firefox-i, 5 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga the byung man, 6 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga herofox, 6 vite më parëVery nice! Works well on Ubuntu 18.04 :D
- Vlerësuar me 5 yje nga 5 të mundshëmnga 14788321 përdoruesi Firefox-i, 6 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga Grigorij, 6 vite më parëAfter FireFox was updated to version 66.0 (64-bit). Doesn't work a small pixel high bar at the top.
We can't drag the windows around any more. - Vlerësuar me 5 yje nga 5 të mundshëmnga 13402379 përdoruesi Firefox-i, 7 vite më parëGood for them who won't see close/minimize buttons. You can drag windows by small area between tabs and new tab button.
- Vlerësuar me 5 yje nga 5 të mundshëmnga Tobias, 7 vite më parë:-) super. THANKS. :-) :-) :-) :-) :-) :-) :-) It works and looks better than the build in solution. :-) :-) :-) :-) :-) :-) :-)
- Vlerësuar me 5 yje nga 5 të mundshëmnga 14264051 përdoruesi Firefox-i, 7 vite më parë
- Vlerësuar me 4 yje nga 5 të mundshëmnga おまけ, 7 vite më parëIt does work but it's a hacky solution and is not perfect. There are no minimize/maximize/close buttons. I hope mozilla adds this functionality by default.
- Vlerësuar me 5 yje nga 5 të mundshëmnga 13423676 përdoruesi Firefox-i, 7 vite më parëIn Manjaro-Deepin Works Good !!!
- Vlerësuar me 5 yje nga 5 të mundshëmnga 14034577 përdoruesi Firefox-i, 7 vite më parëUbuntu Gnome 16.04.4 64-bit, Firefox 60.0 64-bit. It works!
- Vlerësuar me 5 yje nga 5 të mundshëmnga 14006935 përdoruesi Firefox-i, 7 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga 13912887 përdoruesi Firefox-i, 7 vite më parëFinally, a solution for a very common problem. It's a pity this add-on has so few users
- Vlerësuar me 5 yje nga 5 të mundshëmnga zhangly, 7 vite më parëDebian9 Gnome3 wayland firefox57.04 不能用,我按(http://eleveni386.7axu.com/blog/post/admin/Linux%E7%94%A8%E6%88%B7%E5%8E%BB%E6%8E%89Firefox-57-%E8%AE%A8%E5%8E%8C%E7%9A%84Title-bar)改了,OK!
install_hide_firefox_titlebar:
#!/bin/bash
# date: 2017-11-17
# license: GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt
# author: nanpuyue https://blog.nanpuyue.com
echo 'install: ~/.mozilla/native-messaging-hosts/hide_titlebar.json'
[[ -d ~/.mozilla/native-messaging-hosts ]] || mkdir -p ~/.mozilla/native-messaging-hosts
cat > ~/.mozilla/native-messaging-hosts/hide_titlebar.json << EOF
{
"name": "hide_titlebar",
"description": "Hide the Firefox titlebar.",
"path": "$HOME/.local/bin/hide-firefox-titlebar.sh",
"type": "stdio",
"allowed_extensions": ["hide-titlebar@nanpuyue.com"]
}
EOF
echo 'install: ~/.local/bin/hide-firefox-titlebar.sh'
[[ -d ~/.local/bin ]] || mkdir -p ~/.local/bin
cat > ~/.local/bin/hide-firefox-titlebar.sh << "EOF"
#!/bin/bash
# date: 2017-11-17
# license: GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt
# author: nanpuyue https://blog.nanpuyue.com
python - <from gtk.gdk import window_foreign_new, window_process_all_updates
import os
F_W_ID_List=os.popen("wmctrl -l|grep 'Firefox'").readlines()
id_list=[]
for iF_W_ID in F_W_ID_List:
w = window_foreign_new(int(iF_W_ID[:10], 16))
w.set_decorations(0)
window_process_all_updates()
EOF
chmod +x ~/.local/bin/hide-firefox-titlebar.sh
echo 'done' - Vlerësuar me 5 yje nga 5 të mundshëmnga 13504291 përdoruesi Firefox-i, 7 vite më parë
- Vlerësuar me 3 yje nga 5 të mundshëmnga Gammadeus, 7 vite më parëI have already installed the script from the Github and I also run the 2. script (generated to ~/.local/bin directory) with the "-x" option), but it doesn't work.
How can I fix the problem ?
I use Firefox 57 (Quantum) on Linux Mint Debian Edition with Xfce desktop environment. (The xdotool package was installed after first run of the sh file generated to ~/.local/bin directory. After that I run this script again with success.)
Can You help me with some tips / advices to make this addon workable on my system ? (If you give me a mail-address we could talk about that there.)
Thx. - Vlerësuar me 5 yje nga 5 të mundshëmnga 13486984 përdoruesi Firefox-i, 7 vite më parëDoes exactly what it's supposed to. Leaves a small 4 pixel high bar at the top so you can still click and drag the windows around. Thank you!