mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 09:04:30 +00:00
My needs are really quite simple, so I'm just going to add what I need as I go along. The first thing I needed was a simple box layout with widgets being able to say whether they prefer fixed or fill for both their vertical and horizontal sizes. I also made a simple GStatusBar so FileManager can show how many bytes worth of files are in the current directory.
25 lines
633 B
Bash
Executable File
25 lines
633 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo id
|
|
|
|
make -C ../LibC clean && \
|
|
make -C ../LibC && \
|
|
make -C ../LibGUI clean && \
|
|
make -C ../LibGUI && \
|
|
make -C ../Userland clean && \
|
|
make -C ../Userland && \
|
|
make -C ../Applications/Terminal clean && \
|
|
make -C ../Applications/Terminal && \
|
|
make -C ../Applications/FontEditor clean && \
|
|
make -C ../Applications/FontEditor && \
|
|
make -C ../Applications/Clock clean && \
|
|
make -C ../Applications/Clock && \
|
|
make -C ../Applications/Launcher clean && \
|
|
make -C ../Applications/Launcher && \
|
|
make -C ../Applications/FileManager clean && \
|
|
make -C ../Applications/FileManager && \
|
|
make clean &&\
|
|
make && \
|
|
sudo ./sync.sh
|
|
|