removed some debug messages, script updates

This commit is contained in:
K D Hedger
2023-11-15 14:02:48 +00:00
parent f4e3feaeb5
commit 80dd7ad89b
9 changed files with 6 additions and 13 deletions

View File

@ -1,2 +1,3 @@
0.1.0
Script updates.
First commit of lfsdock.

View File

@ -1 +1 @@
COMMONSRC = ../src/appmenu.cpp ../src/callbacks.cpp ../src/clock.cpp ../src/cpu.cpp ../src/disks.cpp ../src/globals.cpp ../src/launchers.cpp ../src/logout.cpp ../src/main.cpp ../src/slider.cpp ../src/windowlist.cpp
COMMONSRC = ../src/callbacks.cpp ../src/clock.cpp ../src/globals.cpp ../src/launchers.cpp ../src/main.cpp ../src/slider.cpp

View File

@ -99,8 +99,6 @@ bool timerCB(LFSTK_applicationClass *p,void* ud)
return(true);
}
#define DOCK_MSG 2000
void readMsg(void)
{
int retcode;

View File

@ -381,7 +381,7 @@ struct msgBuffer
char mText[MAX_MSG_SIZE];
};
enum {DESKTOP_MSG=1000,WMANAGER_MSG,PANEL_MSG,WALLPAPER_MSG,TOOLKIT_MSG,LFSWM2_MSG,APPEARANCE_PREFS_MSG,BACKDROP_PREFS_MSG,DESKTOP_PREFS_MSG,PANEL_PREFS_MSG,TK_PREFS_MSG,WMANAGER_PREFS_MSG,LFSWM2_PREFS_MSG};
enum {DESKTOP_MSG=1000,WMANAGER_MSG,PANEL_MSG,WALLPAPER_MSG,TOOLKIT_MSG,LFSWM2_MSG,DOCK_MSG,APPEARANCE_PREFS_MSG,BACKDROP_PREFS_MSG,DESKTOP_PREFS_MSG,PANEL_PREFS_MSG,TK_PREFS_MSG,WMANAGER_PREFS_MSG,LFSWM2_PREFS_MSG};
#include "LFSTKPrefsClass.h"
#include "LFSTKLib.h"

View File

@ -552,11 +552,7 @@ void LFSTK_windowClass::LFSTK_setWindowColourName(int p,const char* colour)
this->windowColourNames[p].RGBAColour.b=((this->windowColourNames[p].pixel>>0) & 0xff)/256.0;
if(p==NORMALCOLOUR)
{
this->windowNormalAlpha=this->windowColourNames[NORMALCOLOUR].RGBAColour.a;
fprintf(stderr,"windowNormalAlpha=%f\n",this->windowNormalAlpha);
}
}
/**

View File

@ -58,8 +58,6 @@ bool transButtonCB(void *p,void* ud)
LFSTK_buttonClass *button=NULL;
long subwin=(long)ud;
fprintf(stderr,"windowNormalAlpha=%f\n",apc->windows->at(subwin).window->windowNormalAlpha);
apc->LFSTK_runWindowLoop(subwin);
return(true);
}

View File

@ -23,7 +23,7 @@ PREFIX="/usr"
STAGING=
LDCONFIG="/sbin/ldconfig"
for arg in LFSToolKit LFSSetWallpaper LFSDesktop LFSWManager LFSPanel LFSApplications
for arg in LFSToolKit LFSSetWallpaper LFSDesktop LFSWManager LFSPanel LFSApplications LFSDock
do
# tar -xvf ${arg}-*.tar.gz
pushd ${arg}

View File

@ -120,7 +120,7 @@ if [[ $action = "help" ]];then
exit
fi
for app in "LFSToolKit" $BUILDLFSWMANAGER "LFSWM2" "LFSDesktop" "LFSSetWallpaper" "LFSApplications" "LFSPanel"
for app in "LFSToolKit" $BUILDLFSWMANAGER "LFSWM2" "LFSDesktop" "LFSSetWallpaper" "LFSApplications" "LFSPanel" "LFSDock"
do
pushd $app
echo -e "${RED}Running $action in ${GREEN}$app${RED} ... ${NORMAL}"

View File

@ -22,7 +22,7 @@
PREFIX="/usr"
STAGING=
for arg in LFSToolKit LFSSetWallpaper LFSDesktop LFSWManager LFSPanel LFSApplications
for arg in LFSToolKit LFSSetWallpaper LFSDesktop LFSWManager LFSPanel LFSApplications LFSDock
do
pushd ${arg}
if [ $arg = "LFSToolKit" ];then