Page 2 of 3

Re: KLV-Awesome-RT iso ready for testing

Posted: Wed Sep 27, 2023 3:44 pm
by williwaw
Sofiya wrote: Wed Sep 27, 2023 2:33 pm

Minor bugs left to fix :geek:

Sofia, do you use the mouse more with Awesome?

Looks Nice!
hope you can share your lua config file.


Re: KLV-Awesome-RT iso ready for testing

Posted: Wed Sep 27, 2023 4:14 pm
by Sofiya
williwaw wrote: Wed Sep 27, 2023 3:44 pm
Sofiya wrote: Wed Sep 27, 2023 2:33 pm

Minor bugs left to fix :geek:

Sofia, do you use the mouse more with Awesome?

Looks Nice!
hope you can share your lua config file.

No, hotkeys, in the mouse I only use the scroll wheel


Re: KLV-Awesome-RT iso ready for testing

Posted: Wed Sep 27, 2023 4:50 pm
by Sofiya

xluncher-1.0_0 you need to change his name so that he does not check the version and download the update xlunch-4.7.3_1.x86_64.xbps


Re: KLV-Awesome-RT iso ready for testing

Posted: Wed Sep 27, 2023 6:16 pm
by Sofiya

In principle, you can already build a test version of
KLV-AwesomeCE-1.0 :welcome:


Re: KLV-Awesome-RT iso ready for testing

Posted: Wed Sep 27, 2023 8:19 pm
by Sofiya

:thumbup2:


Re: KLV-Awesome-RT iso ready for testing

Posted: Wed Sep 27, 2023 10:58 pm
by Sofiya

:thumbup:

Code: Select all

qemu-system-x86_64 -enable-kvm -m 2G -vga std -smp 2 -device AC97 -cdrom /root/Downloads/KLV-AwesomeCE-1.0.iso

Re: KLV-Awesome-RT iso ready for testing

Posted: Thu Sep 28, 2023 12:14 am
by rockedge

@Sofiya I ran a build, squashed the 07firstrib_rootfs and created an ISO with the main components to start on a QEMU virtual machine from the ISO. Then set up the virtual HDD and add grub2 or some boot loader. Then boot from a frugal install on the VHDD

Screenshot(16).jpg
Screenshot(16).jpg (25.38 KiB) Viewed 5448 times

Re: KLV-Awesome-RT iso ready for testing

Posted: Thu Sep 28, 2023 6:01 am
by Sofiya

KLV-AwesomeCE-1.1 stable

Edit:
Removed unnecessary programs and utilities. The plugin was rewritten and replaced.


Re: KLV-Awesome-RT iso ready for testing

Posted: Thu Sep 28, 2023 12:09 pm
by Sofiya

:thumbup2:


Re: KLV-Awesome-RT iso ready for testing

Posted: Thu Sep 28, 2023 12:37 pm
by Sofiya

The theme can be changed in the file /root/.config/awesome/settings.lua
on line 14 change the number in brackets [5] after selecting theme Super + r
Total 6 topics


Re: KLV-Awesome-RT iso ready for testing

Posted: Fri Sep 29, 2023 7:17 pm
by Sofiya

The calendar code has just been fixed and it looks correct now. :thumbup:
Also made other fixes.


Re: KLV-Awesome-RT iso ready for testing

Posted: Fri Sep 29, 2023 10:40 pm
by Sofiya

While it hasn’t gone out of my head, swapper-1.2_1.noarch.xbps has strange behavior. Maybe it’s just me, or it depends on what KLV is installed on. On the first boot, it creates a link /mnt/home to the partition where KLV is installed (I have this is the /mnt/sda2 section) and so on, after logging out and logging in, it again creates a link in /mnt/home - sda2 to /mnt/sda2 to the partition where KLVs are installed......

this is not normal startswapper behavior

swapper.sh

Code: Select all

#!/bin/sh
# utility by fredx181 Jan2022
#
# revison 19Feb2022 by fredx181

#### Load swap ####
 echo "LOAD SWAP"
  for ONESWAP in `fdisk -l | grep ' Linux swap' | cut -f 1 -d ' ' | tr '\n' ' '`
  do
    echo -n "Loading swap partition $ONESWAP..." >/dev/console
    swapon $ONESWAP
  done
#########################

#### Create symlink /mnt/home ####
MNTHOME=$(mount | grep "/mnt/layers/merged/mnt" |  cut -d'/' -f3 | cut -d' ' -f1)
ln -sf /mnt/$MNTHOME /mnt/home
#########################

Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 12:09 am
by geo_c
Sofiya wrote: Fri Sep 29, 2023 10:40 pm

While it hasn’t gone out of my head, swapper-1.2_1.noarch.xbps has strange behavior. Maybe it’s just me, or it depends on what KLV is installed on. On the first boot, it creates a link /mnt/home to the partition where KLV is installed (I have this is the /mnt/sda2 section) and so on, after logging out and logging in, it again creates a link in /mnt/home - sda2 to /mnt/sda2 to the partition where KLVs are installed......

this is not normal startswapper behavior

swapper.sh

Code: Select all

#!/bin/sh
# utility by fredx181 Jan2022
#
# revison 19Feb2022 by fredx181

#### Load swap ####
 echo "LOAD SWAP"
  for ONESWAP in `fdisk -l | grep ' Linux swap' | cut -f 1 -d ' ' | tr '\n' ' '`
  do
    echo -n "Loading swap partition $ONESWAP..." >/dev/console
    swapon $ONESWAP
  done
#########################

#### Create symlink /mnt/home ####
MNTHOME=$(mount | grep "/mnt/layers/merged/mnt" |  cut -d'/' -f3 | cut -d' ' -f1)
ln -sf /mnt/$MNTHOME /mnt/home
#########################

This might be happening in bspwm also, because I notice an sda1 link keeps popping up in /mnt where there is already an sda1 directory, and a link to it called /mnt/home. I thought maybe I was to blame, but this seems to be related.


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 12:13 am
by Sofiya
geo_c wrote: Sat Sep 30, 2023 12:09 am
Sofiya wrote: Fri Sep 29, 2023 10:40 pm

While it hasn’t gone out of my head, swapper-1.2_1.noarch.xbps has strange behavior. Maybe it’s just me, or it depends on what KLV is installed on. On the first boot, it creates a link /mnt/home to the partition where KLV is installed (I have this is the /mnt/sda2 section) and so on, after logging out and logging in, it again creates a link in /mnt/home - sda2 to /mnt/sda2 to the partition where KLVs are installed......

this is not normal startswapper behavior

swapper.sh

Code: Select all

#!/bin/sh
# utility by fredx181 Jan2022
#
# revison 19Feb2022 by fredx181

#### Load swap ####
 echo "LOAD SWAP"
  for ONESWAP in `fdisk -l | grep ' Linux swap' | cut -f 1 -d ' ' | tr '\n' ' '`
  do
    echo -n "Loading swap partition $ONESWAP..." >/dev/console
    swapon $ONESWAP
  done
#########################

#### Create symlink /mnt/home ####
MNTHOME=$(mount | grep "/mnt/layers/merged/mnt" |  cut -d'/' -f3 | cut -d' ' -f1)
ln -sf /mnt/$MNTHOME /mnt/home
#########################

This might be happening in bspwm also, because I notice an sda1 link keeps popping up in /mnt where there is already an sda1 directory, and a link to it called /mnt/home. I thought maybe I was to blame, but this seems to be related.

I don't have swapper.sh in Bspwm . this package swapper-1.2_1.noarch.xbps is not installed in my Bspwm
This creates if there is a start_swapper in /root/Startup . located


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 1:52 am
by geo_c
Sofiya wrote: Sat Sep 30, 2023 12:13 am
geo_c wrote: Sat Sep 30, 2023 12:09 am
Sofiya wrote: Fri Sep 29, 2023 10:40 pm

While it hasn’t gone out of my head, swapper-1.2_1.noarch.xbps has strange behavior. Maybe it’s just me, or it depends on what KLV is installed on. On the first boot, it creates a link /mnt/home to the partition where KLV is installed (I have this is the /mnt/sda2 section) and so on, after logging out and logging in, it again creates a link in /mnt/home - sda2 to /mnt/sda2 to the partition where KLVs are installed......

this is not normal startswapper behavior

swapper.sh

Code: Select all

#!/bin/sh
# utility by fredx181 Jan2022
#
# revison 19Feb2022 by fredx181

#### Load swap ####
 echo "LOAD SWAP"
  for ONESWAP in `fdisk -l | grep ' Linux swap' | cut -f 1 -d ' ' | tr '\n' ' '`
  do
    echo -n "Loading swap partition $ONESWAP..." >/dev/console
    swapon $ONESWAP
  done
#########################

#### Create symlink /mnt/home ####
MNTHOME=$(mount | grep "/mnt/layers/merged/mnt" |  cut -d'/' -f3 | cut -d' ' -f1)
ln -sf /mnt/$MNTHOME /mnt/home
#########################

This might be happening in bspwm also, because I notice an sda1 link keeps popping up in /mnt where there is already an sda1 directory, and a link to it called /mnt/home. I thought maybe I was to blame, but this seems to be related.

I don't have swapper.sh in Bspwm . this package swapper-1.2_1.noarch.xbps is not installed in my Bspwm
This creates if there is a start_swapper in /root/Startup . located

I'll have to investigate. I might have created it in a lower layer accidentally. But I'm also running KLV-airedale from the same drive, so might have something to do with it.


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 1:57 am
by Sofiya
geo_c wrote: Sat Sep 30, 2023 1:52 am
Sofiya wrote: Sat Sep 30, 2023 12:13 am
geo_c wrote: Sat Sep 30, 2023 12:09 am

This might be happening in bspwm also, because I notice an sda1 link keeps popping up in /mnt where there is already an sda1 directory, and a link to it called /mnt/home. I thought maybe I was to blame, but this seems to be related.

I don't have swapper.sh in Bspwm . this package swapper-1.2_1.noarch.xbps is not installed in my Bspwm
This creates if there is a start_swapper in /root/Startup . located

I'll have to investigate. I might have created it in a lower layer accidentally. But I'm also running KLV-airedale from the same drive, so might have something to do with it.

yes KLV-airedale has a start_swapper in /root/Startup


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 2:02 am
by williwaw

does "/mnt/layers/merged/mnt" exist?


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 2:06 am
by Sofiya
williwaw wrote: Sat Sep 30, 2023 2:02 am

does "/mnt/layers/merged/mnt" exist?

Yes


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 12:39 pm
by Sofiya

Comparing the RAM consumption in Awesome, the lowest consumption is with the browser running.
Great for older systems


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 5:13 pm
by Sofiya

KLV-AwesomeCE-1.2 stable
*********************************************************


Re: KLV-Awesome-RT iso ready for testing

Posted: Sat Sep 30, 2023 11:39 pm
by Sofiya

I’ll add a little beauty to the numbers of desktop selection :thumbup:


Re: KLV-Awesome-RT iso ready for testing

Posted: Sun Oct 01, 2023 12:59 am
by Sofiya

I'll leave all 3 options to choose from.
to select an option, uncomment - -, and comment out the one that is not needed - -
I'll add an option with icons later. Browser, Terminal, File Manager......


Re: KLV-Awesome-RT iso ready for testing

Posted: Sun Oct 01, 2023 1:40 am
by Sofiya

:)


Re: KLV-Awesome-RT iso ready for testing

Posted: Mon Oct 02, 2023 2:50 pm
by Sofiya

PowerArrow_Blue


Re: KLV-Awesome-RT iso ready for testing

Posted: Mon Oct 02, 2023 4:29 pm
by Sofiya

PowerArrow_Grey
I’ll also add it the Gray color,Without it the picture is not complete ;)


Re: KLV-Awesome-RT iso ready for testing

Posted: Mon Oct 02, 2023 6:08 pm
by Sofiya

PowerArrow_Light
I think 7 themes will be enough, if you just add another light theme ;)


Re: KLV-Awesome-RT iso ready for testing

Posted: Mon Oct 02, 2023 7:13 pm
by williwaw
Sofiya wrote: Mon Oct 02, 2023 6:08 pm

I think 7 themes will be enough..........

thanks for sharing your lua configs


Re: KLV-Awesome-RT iso ready for testing

Posted: Mon Oct 02, 2023 8:27 pm
by Sofiya

Here's a light theme, maybe I'll adjust it a little :)


Re: KLV-Awesome-RT iso ready for testing

Posted: Mon Oct 02, 2023 10:54 pm
by Sofiya

Color customization is done using Visual Studio Code - a lightweight but powerful source code editor :thumbup:

As the great leader bequeathed, study, study and study again, but you will die a fool :) so I'm studying in vain . Yes, it doesn’t matter what the leader said, the main thing is that I’m interested. :geek:


Re: KLV-Awesome-RT iso ready for testing

Posted: Tue Oct 03, 2023 4:52 pm
by Sofiya