You are not logged in.

#21 2018-06-05 19:58:14

skandyn
Member
From: Poland
Registered: 2018-05-03
Posts: 43

Re: June 2018 Screenshots

Snap.th.png

Offline

#22 2018-06-06 10:59:43

altman
Member
From: Canada
Registered: 2015-10-24
Posts: 619

Re: June 2018 Screenshots

Nice shots in there gents.


My Linux installs are as in my music; it s on Metal

Offline

#23 2018-06-06 23:03:53

cloverskull
Member
Registered: 2015-10-01
Posts: 348

Re: June 2018 Screenshots

2018-06-06-155454_1920x1080_scrot.th.png

Offline

#24 2018-06-06 23:15:18

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: June 2018 Screenshots

@cloverskull, you sick, sick bastard, that is beautiful.


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#25 2018-06-07 05:32:18

cloverskull
Member
Registered: 2015-10-01
Posts: 348

Re: June 2018 Screenshots

hhh wrote:

@cloverskull, you sick, sick bastard, that is beautiful.

Thanks! It was a labor of love over several weeks. I think the number of people currently able to use modern Firefox on a 32 bit powerpc architecture probably number in the single digits. I'm ... proud of that. tongue

It's actually a very usable desktop. I'm currently fully booted and only consuming 84.2MB of RAM. I may do this on a PPC64 desktop that I have...if I do, I will likely document it more closely, which could serve as a gentoo-labs howto, in a way.

Offline

#26 2018-06-07 06:56:23

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: June 2018 Screenshots

cloverskull wrote:

I'm currently fully booted and only consuming 84.2MB of RAM.

Please, install lxtask and post a fullscreen scrot of it!

https://packages.debian.org/stretch/x11/lxtask


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#27 2018-06-07 12:30:37

ragamatrix
Member
Registered: 2015-10-04
Posts: 427

Re: June 2018 Screenshots

something simple:
2018-06-07-142438_1920x1080_scrot.th.png

Offline

#28 2018-06-07 22:55:18

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: June 2018 Screenshots

^ Lovely wallpaper!

Our users are great, look at these decent seed stats...

Screenshot_2018-06-07_18-39-43.th.png

Wait a second... Swap usage is at 12.0M??!!!!? EVERYBODY RUN, SHE'S GONNA' BLOW! hits siren BWOP BWOP BWOP BWOP


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#29 2018-06-08 05:43:09

cloverskull
Member
Registered: 2015-10-01
Posts: 348

Re: June 2018 Screenshots

hhh wrote:
cloverskull wrote:

I'm currently fully booted and only consuming 84.2MB of RAM.

Please, install lxtask and post a fullscreen scrot of it!

https://packages.debian.org/stretch/x11/lxtask

Interestingly enough conky reports something different than lxtask, and lxtask is one of my most memory-hungry processes currently running, but here ya go smile

2018-06-07-224020_1920x1080_scrot.th.png

Offline

#30 2018-06-08 20:47:13

mrneilypops
The BL Scrot.Moe Guy
From: luxembourg
Registered: 2015-09-30
Posts: 577
Website

Offline

#31 2018-06-08 21:24:32

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,854

Re: June 2018 Screenshots

img-2018-06-09-092902.md.png

Last edited by Döbbie03 (2018-06-08 21:30:53)


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#32 2018-06-09 18:47:34

mrneilypops
The BL Scrot.Moe Guy
From: luxembourg
Registered: 2015-09-30
Posts: 577
Website

Re: June 2018 Screenshots

Arch+dwm...again  roll

2018-06-09-204005_1920x1080_scrot.th.png

dwm default colors cool +ohsnap font
slstatus +mpd script
xst

Last edited by mrneilypops (2018-06-09 18:54:24)

Offline

#33 2018-06-09 21:15:00

malm
jgmenu developer
Registered: 2016-10-13
Posts: 735
Website

Re: June 2018 Screenshots

I have been running ArchLabs for a while, but last week I installed
BunsenLabs on my netbook and took it with me on a week's travel. I'm
really delighted with the setup and just wanted to say thank you.

Here follow a scrot and some post-installation steps that I took.

2018-06-09-214609_1024x600_scrot.th.png

1. Install some productivity tools

sudo apt install vim git make gcc xterm ack

2. Create ~/.bash_aliases with a few aliases that I have lived with for such a long time that I get confused if they are not there.

alias ls='ls --color=auto -h --group-directories-first'
alias l='ls -l'
alias ll='ls -la'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias grep="grep --colour=auto"

3. Install menu and re-assign xcape super-key

sudo apt install jgmenu lxmenu-data

4. Add ~/.vimrc

set nocompatible
set encoding=UTF-8
set nowrap
set backspace=indent,eol,start

"""" :help statusline """"""""""""""""""""""""""""""""""""""""""""""""""""""""
set ruler
set laststatus=2
set showcmd
set showmode
"set number   " numbering along the left side
"set statusline+=[%{&fo}]

"""" search """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set incsearch			" highlight as you type
set ignorecase
set smartcase			" overrides ignorecase if upper case in search
set hlsearch

"remove useless splash screen
set shortmess+=I


"""" COLOUR SCHEME """""""""""""""""""""""""""""""""""""""""""""""""""""""""""
filetype plugin on
syntax on

colorscheme desert

if &diff
    colorscheme evening
endif

hi Search cterm=NONE ctermfg=red ctermbg=blue
highlight Comment ctermfg=Brown

" show trailing spaces and spaces before a tab
highlight ExtraWhitespace ctermbg=red
match ExtraWhitespace /\s\+$\| \+\ze\t/

"""" TOGGLE WRAP TO WRITE PROSE (with \w) """"""""""""""""""""""""""""""""""""
noremap <silent> <Leader>w :call ToggleWrap()<CR>
function ToggleWrap()
  if &wrap
    echo "Wrap OFF"
    setlocal nowrap autoindent cindent
    silent! nunmap <buffer> <Up>
    silent! nunmap <buffer> <Down>
    silent! nunmap <buffer> <Home>
    silent! nunmap <buffer> <End>
    silent! iunmap <buffer> <Up>
    silent! iunmap <buffer> <Down>
    silent! iunmap <buffer> <Home>
    silent! iunmap <buffer> <End>
  else
    echo "Wrap ON"
    setlocal wrap linebreak nolist noautoindent nocindent
    setlocal display+=lastline
    noremap  <buffer> <silent> <Up>   gk
    noremap  <buffer> <silent> <Down> gj
    noremap  <buffer> <silent> <Home> g<Home>
    noremap  <buffer> <silent> <End>  g<End>
    inoremap <buffer> <silent> <Up>   <C-o>gk
    inoremap <buffer> <silent> <Down> <C-o>gj
    inoremap <buffer> <silent> <Home> <C-o>g<Home>
    inoremap <buffer> <silent> <End>  <C-o>g<End>
  endif
endfunction

5. Add xterm lines in .Xresources and `xrdb ~/.Xresources`

! xterm ------------------------------------------------------------
xterm*background:         #000000
xterm*foreground:         #babdb6
xterm*color0:             #000000
xterm*color8:             #555753
xterm*color1:             #ff6565
xterm*color9:             #ff8d8d
xterm*color2:             #93d44f
xterm*color10:            #c8e7a8
xterm*color3:             #eab93d
xterm*color11:            #ffc123
xterm*color4:             #204a87
xterm*color12:            #3465a4
xterm*color5:             #ce5c00
xterm*color13:            #f57900
xterm*color6:             #89b6e2
xterm*color14:            #46a4ff
xterm*color7:             #cccccc
xterm*color15:            #ffffff
xterm*VT100.geometry:     80x25
xterm*faceName:           Dejavu Sans Mono:style=Regular:size=12
xterm*dynamicColors:      true
xterm*utf8:               2
xterm*eightBitInput:      true
xterm*saveLines:          512
xterm*scrollKey:          true
xterm*scrollTtyOutput:    false
xterm*scrollBar:          false
xterm*rightScrollBar:     false
xterm*jumpScroll:         true
xterm*multiScroll:        true
xterm*toolBar:            false

Offline

#34 2018-06-09 23:29:47

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: June 2018 Screenshots

cloverskull wrote:

Interestingly enough conky reports something different than lxtask, and lxtask is one of my most memory-hungry processes currently running, but here ya go smile

https://cdn.scrot.moe/images/2018/06/08/2018-06-07-224020_1920x1080_scrot.th.png

That's normal, you should see what gnome-system-monitor reports next to conky, or even what xfce4-taskmanager displays. They're all over the map, maybe conky is too. htop FTW.


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#35 2018-06-09 23:32:35

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: June 2018 Screenshots

malm wrote:

I have been running ArchLabs for a while, but last week I installed
BunsenLabs on my netbook and took it with me on a week's travel. I'm
really delighted with the setup and just wanted to say thank you.

I had a really, really bad day, that was a nice post to see. And I thank You.


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#36 2018-06-10 00:42:34

lowrider
Member
From: Germany
Registered: 2015-09-29
Posts: 358

Re: June 2018 Screenshots

nice shots gents

something retro today
windowmaker running on manjaro in vbox
2018-06-10-023820_1440x900_scrot.th.png

Offline

#37 2018-06-10 02:02:21

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,032
Website

Re: June 2018 Screenshots

lowrider wrote:

nice shots gents

+1. Yours too, lowrider.


No, he can't sleep on the floor. What do you think I'm yelling for?!!!

Offline

#38 2018-06-10 02:05:07

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,611

Re: June 2018 Screenshots

@lowrider - awesome, love those retro tiles.

dwm_june09.th.png

Last edited by PackRat (2018-06-10 02:26:30)


You must unlearn what you have learned.
    -- yoda

Online

#39 2018-06-10 06:52:30

yunn
Member
From: Madrid
Registered: 2015-09-29
Posts: 67
Website

Re: June 2018 Screenshots

mrneilypops wrote:

Obarun 2018-06 cool

s6 supervision suite = super fast boot!
https://skarnet.org/software/s6/

https://github.com/skarnet/s6

Heeeey @mrneilypops, very nice your Obarun. smile My screenshot this month too with Obarun

Captura-de-pantalla_2018-06-10_08-39-50.th.png

Regards,

Offline

#40 2018-06-10 07:22:11

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,854

Re: June 2018 Screenshots

Blasphemer!!  Blasphemer!!

img-2018-06-10-192005.md.png

God Damn Blasphemy!!


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

Board footer

Powered by FluxBB