The Lounge 0001 [From the Beginning]

what level of savagery have you unleashed onto the world.

1 Like

You must have a lot of time on you hands

3 Likes

There is stuff in there that I do not dare release…on the forum

1 Like

I wear watch I always have time on my hands

4 Likes

do… dare I even open it?

2 Likes

2 Likes

up to you, sweetie

1510937307263

4 Likes

So actually trying to open it crashed Nautilus, :thinking: maybe this is a sign

1 Like

Use file-roller instead

1 Like

yolo? surely it can’t be much worse than the old one I have.

1 Like

atleast its organized unlike the last one XD

ye think?

1 Like

I obsess over that shit

Is it the only thing that gives you self worth, that shining beacon that makes you get up in the morning?

I like my job, no

job first and memes second, you disappoint me.

3 Likes

So i got my keyboard backlight set to a breathing animation via software :smiley:

#!/bin/bash

SLEEP=0.005 #Delay for sleep. Controls how fast the breathing is
LED=/sys/devices/platform/applesmc.768/leds/smc::kbd_backlight/brightness #Points to where brightness is controlled
counter=0 #sets up the counter variable so that is used for keeping track of brightness

while true
do
        while [ $counter -ge 0 ]
        do
                echo $counter > $LED
                (( counter++ ))
                sleep $SLEEP
                if [ $counter = 255 ]
                then
                        break
                fi
        done

        while [ $counter -le 255 ]
        do
                echo $counter > $LED
                (( counter-- ))
                sleep $SLEEP
                if [ $counter = 0 ]
                then
                        break
                fi
        done

done
1 Like

Nice so sleep did end up working :smiley:

1 Like

yep. turns out you can use decimal increments in sleep which is good because i need something alot smaller than 1 XD

1 Like

@Cavemanthe0ne 2 things. Still need SPF, DKIM, etc records setup so i can get email fully working again and is it possible we could have forum.cubedcorps.com redirect to forum.0cd.xyz

1 Like