Recenze doplňku hide the titlebar
hide the titlebar od nanpuyue
25 recenzí
- Hodnocení: 5 z 5od uživatele Olli Copperwolf, před rokemIt 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...
- Hodnocení: 5 z 5od uživatele Kurotaku, před 4 lety
- Hodnocení: 5 z 5od uživatele Łukasz Polowczyk, před 5 letyRescue with a broken window manager. Thanks.
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 16185473, před 5 lety
- Hodnocení: 5 z 5od uživatele the byung man, před 6 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 14788321, před 6 lety
- Hodnocení: 5 z 5od uživatele Grigorij, před 6 letyAfter 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. - Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13402379, před 7 letyGood for them who won't see close/minimize buttons. You can drag windows by small area between tabs and new tab button.
- Hodnocení: 5 z 5od uživatele Tobias, před 7 lety:-) super. THANKS. :-) :-) :-) :-) :-) :-) :-) It works and looks better than the build in solution. :-) :-) :-) :-) :-) :-) :-)
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 14264051, před 7 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13423676, před 7 letyIn Manjaro-Deepin Works Good !!!
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 14034577, před 7 letyUbuntu Gnome 16.04.4 64-bit, Firefox 60.0 64-bit. It works!
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 14006935, před 7 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13912887, před 7 letyFinally, a solution for a very common problem. It's a pity this add-on has so few users
- Hodnocení: 5 z 5od uživatele zhangly, před 8 letyDebian9 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' - Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13504291, před 8 lety
- Hodnocení: 5 z 5od uživatele Uživatel Firefoxu - 13486984, před 8 letyDoes 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!