arisuchan    [ tech / cult / art ]   [ λ / Δ ]   [ psy ]   [ ru ]   [ random ]   [ meta ]   [ all ]    info / stickers     temporarily disabledtemporarily disabled

/λ/ - programming

structure and interpretation of computer programs.
Name
Email
Subject
Comment

formatting options

File
Password (For file deletion.)

Help me fix this shit. https://legacy.arisuchan.jp/q/res/2703.html#2703

Kalyx ######


File: 1567363704250.png (9.15 KB, 417x73, SS.png)

 No.1731

Hey Alice, please help me with a little something.
how can i permanently hide the title/name of all tabs in Firefox?
I'd like for all tabs to look like a pinned tab (pic related, right click tab for the pin option)

 No.1732

>>1731
write a userscript, listen for title changes, set anything you like instead /thread

 No.1733

>>1732
That won't collapse the tab. Try pasting the following into the console:
document.title = '\u200C'

(If you just put an empty string, the title becomes the URL.)

 No.1734

>>1731
If you habitually have a billion tabs open (I'm ashamed but I'll be honest about it) then you can go into about:config and change browser.tabs.tabMinWidth to 0.

As long as you have a full screen width of tabs It'll get rid of everything except the first letter, which isn't exactly what you need but it's fairly close and a nice extremely lazy solution.

Too bad there's not a browser.tabs.tabMaxWidth value. You'd think there would be, but no.

 No.1737

File: 1567474620653.jpg (108.61 KB, 372x540, 755648d9969ec2c9ad43f903f8….jpg)

>>1733
𝘈𝘭𝘳𝘪𝘨𝘩𝘵, 𝘵𝘩𝘢𝘵 𝘳𝘦𝘮𝘰𝘷𝘦𝘥 𝘵𝘩𝘦 𝘵𝘪𝘵𝘭𝘦, 𝘵𝘩𝘢𝘵'𝘴 𝘢𝘯 𝘪𝘯𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘜𝘯𝘪𝘤𝘰𝘥𝘦 𝘴𝘺𝘮𝘣𝘰𝘭 𝘳𝘪𝘨𝘩𝘵,? 𝘤𝘰𝘰𝘭. 𝘵𝘩𝘢𝘯𝘬 𝘺𝘰𝘶 𝘈𝘭𝘪𝘤𝘦. 𝘕𝘰𝘸 𝘪 𝘯𝘦𝘦𝘥 𝘢𝘥𝘷𝘪𝘤𝘦 𝘰𝘯 𝘩𝘰𝘸 𝘵𝘰 𝘢𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤𝘢𝘭𝘭𝘺 𝘢𝘱𝘱𝘭𝘺 𝘵𝘩𝘢𝘵 𝘢𝘭𝘭 𝘵𝘢𝘣𝘴 𝘢𝘴 𝘸𝘦𝘭𝘭 𝘢𝘴 𝘴𝘩𝘳𝘪𝘯𝘬 𝘵𝘩𝘦 𝘵𝘢𝘣 𝘴𝘪𝘻𝘦 𝘥𝘰𝘸𝘯 𝘵𝘰 𝘫𝘶𝘴𝘵 𝘵𝘩𝘦 𝘧𝘢𝘷𝘪𝘤𝘰𝘯.

>>1734 𝘺𝘦𝘢𝘩 𝘣𝘳𝘰𝘸𝘴𝘦𝘳.𝘵𝘢𝘣𝘴.𝘵𝘢𝘣𝘔𝘢𝘹𝘞𝘪𝘥𝘵𝘩 𝘪𝘴 𝘦𝘹𝘢𝘤𝘵𝘭𝘺 𝘸𝘩𝘢𝘵 𝘪 𝘯𝘦𝘦𝘥. 𝘢𝘭𝘴𝘰 𝘐 𝘸𝘢𝘯𝘵 𝘢 𝘤𝘰𝘮𝘱𝘭𝘦𝘵𝘦 𝘴𝘰𝘭𝘶𝘵𝘪𝘰𝘯, 𝘴𝘰 𝘶𝘯𝘧𝘰𝘳𝘵𝘶𝘯𝘢𝘵𝘦𝘭𝘺 𝘩𝘢𝘷𝘪𝘯𝘨 𝘵𝘩𝘪𝘴 𝘰𝘯𝘭𝘺 𝘸𝘰𝘳𝘬 𝘸𝘩𝘦𝘯 𝘢 𝘭𝘰𝘵 𝘰𝘧 𝘵𝘢𝘣𝘴 𝘪𝘴 𝘰𝘱𝘦𝘯 𝘪𝘴𝘯'𝘵 𝘸𝘩𝘢𝘵 𝘐'𝘮 𝘭𝘰𝘰𝘬𝘪𝘯𝘨 𝘧𝘰𝘳.

 No.1738

File: 1567491298408.png (10.01 KB, 168x109, Screenshot_2019-09-03_08-1….png)

Actually, it looks like you can set the max width in userChrome.css:
.tabbrowser-tab:not([pinned]) {
max-width: 40px !important;
min-width: 40px !important;
}

It kind of works but I wonder if you could just hide the title.

 No.1740

I found this OP, it seems to do what you want: https://github.com/yjp20/ultracompact-firefox

 No.1743

>>1740
WHOOOO HOOOO!!!! that's exactly what i wanted, thanks a billion, if there's anything I can do in return that's within my abilities just ask.

here is something a photoshooped so if you want something shooped maybe i could do that (:

 No.1744

>>1743
image wont post for some reason, here is a link: https://imgur.com/a/CvyrrKE



[Return] [Go to top] [ Catalog ] [Post a Reply]
Delete Post [ ]