Page 11 of 12

Re: New on the market / Fresh from the repos

Posted: Sat Apr 18, 2015 2:26 pm
by dkeg
bones wrote:Hahaha... the fuck:

https://github.com/nvbn/thefuck
Might be on of the best things ever.

Re: New on the market / Fresh from the repos

Posted: Sat Apr 18, 2015 4:28 pm
by wuxmedia
Yeah except with my typing:

Code: Select all

 wux@numenor:~$ suod pat-get insntkl pythin
bash: suod: command not found
wux@numenor:~$ fukc
bash: fukc: command not found
:)

Re: New on the market / Fresh from the repos

Posted: Mon Apr 20, 2015 3:41 am
by machinebacon
https://chrome.google.com/webstore/deta ... hnkhdbieeh
https://github.com/alexanderby/darkreader

Dark Reader (extension for Chrome)
This extension inverts brightness of web pages and aims to reduce eyestrain while browsing the web.

Definitely a must have, you can tune the contrast, greyscale and even sepia. I don't use it on youtube (lag).

Re: New on the market / Fresh from the repos

Posted: Mon Apr 20, 2015 8:12 am
by wuxmedia
nice, good for early morning sessions.
for youtube, there was a stylesheet thing, had to install 'stylish' to make it black.
although doesn't seem to work now. :(

Re: New on the market / Fresh from the repos

Posted: Mon Apr 20, 2015 2:01 pm
by machinebacon
^ Have you tried "Turn off the lights"?

https://www.turnoffthelights.com

Re: New on the market / Fresh from the repos

Posted: Fri Jul 03, 2015 3:56 pm
by bones

Re: New on the market / Fresh from the repos

Posted: Wed Oct 07, 2015 6:06 pm
by ivanovnegro
A new "lightweight" DE is out, Lumina, from the PC-BSD guys.

http://lumina-desktop.org/get-lumina/#debian-testing

Installable on Debian Stable and on Testing/sid.

From the Lumina webpage:
It has been written from scratch in C++/Qt5 and is not based on any existing desktop’s code-base. It also does not use any of the Linux-based desktop frameworks (ConsoleKit, PolicyKit, D-Bus, systemd, etc..), instead using a simple built-in interface layer for communicating directly with the operating system (which is the only class specific to the operating system – making it simple to port/customize).


Systemd and friends not needed.

Edit: I think the the WM is Fluxbox.

Re: New on the market / Fresh from the repos

Posted: Wed Oct 07, 2015 6:11 pm
by GekkoP
^ Reminds me of KDE.

Re: New on the market / Fresh from the repos

Posted: Wed Oct 07, 2015 6:14 pm
by ivanovnegro
It sure looks like all the Qt desktops, this one resembles LXQt or Qt on top of Fluxbox.

Re: New on the market / Fresh from the repos

Posted: Wed Dec 02, 2015 1:21 am
by ivanovnegro
New release of apt that I am sure all the sid users already have installed:

https://mvogt.wordpress.com/2015/11/30/ ... -released/

One of the nicest new features is:

Code: Select all

apt install local-file.deb

Re: New on the market / Fresh from the repos

Posted: Wed Dec 02, 2015 9:26 am
by GekkoP
^ Cool, no more dpkg -i then!

Re: New on the market / Fresh from the repos

Posted: Wed Dec 02, 2015 11:10 am
by simgin
That is sweet :D

Re: New on the market / Fresh from the repos

Posted: Wed Dec 02, 2015 6:31 pm
by ivanovnegro
GekkoP wrote:^ Cool, no more dpkg -i then!
Hm, that is what I thought but it did not work here with a deb file I downloaded. Not sure if I understood it right or made some mistake.

Re: New on the market / Fresh from the repos

Posted: Thu Dec 03, 2015 4:25 am
by franksinistra
^ It didn't work for me too

Re: New on the market / Fresh from the repos

Posted: Thu Dec 03, 2015 7:52 am
by machinebacon
It works, you have to use the full path for the local file (/home/user/Downloads/your.deb)
The bug report for the regression says
Administrators doing "apt-get install /home/<...>.deb" should know what they are doing.
Of course I didn't know what I was doing, too ;)

Re: New on the market / Fresh from the repos

Posted: Thu Dec 03, 2015 9:18 am
by franksinistra
^ ahhhh i see. Thanks for the tip!

Re: New on the market / Fresh from the repos

Posted: Thu Dec 03, 2015 9:34 am
by arnold
Ha. I don't think I'll ever remember that one, too used to dpkg -i

Re: New on the market / Fresh from the repos

Posted: Thu Dec 03, 2015 11:27 am
by rhowaldt
curious: is there any good reasoning as to why they'd make it so you'd have to use the full path? because i dont really get why that would be so important.

Re: New on the market / Fresh from the repos

Posted: Thu Dec 03, 2015 11:34 am
by machinebacon
rho, because you can use apt on local repositories, too (via sources.list), or on local networks, so the path is needed to tell apt that you want to install a local package, not a file from a (local or remote) repository (of which the priorities would again be managed by apt's PinPriority entry in /etc/apt/preferences) . I guess the / in front of the filename tells APT to extract the local file.

Re: New on the market / Fresh from the repos

Posted: Fri Dec 04, 2015 11:02 am
by rhowaldt
aaah okay i see, thanks, makes sense :)