Compare commits
4 commits
38ebd3e8b0
...
a067e9e73c
Author | SHA1 | Date | |
---|---|---|---|
a067e9e73c | |||
26add5f772 | |||
b770e0b19d | |||
340700ac61 |
7 changed files with 28 additions and 11 deletions
|
@ -1,6 +1 @@
|
||||||
Welcome to Solarity Liveboot!
|
[1mWelcome to [32mSolarity Liveboot(B[m[1m!(B[m
|
||||||
|
|
||||||
Default password for the solarity account is `solarity`
|
|
||||||
|
|
||||||
Type `labwc` to launch a GUI.
|
|
||||||
|
|
||||||
|
|
11
airootfs/etc/profile.d/99-greeting.sh
Executable file
11
airootfs/etc/profile.d/99-greeting.sh
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [[ "$(tty)" == "/dev/tty"* ]]; then
|
||||||
|
echo -e -n \
|
||||||
|
"$(tput bold)
|
||||||
|
The default password for the $(tput setaf 4)solarity$(tput setaf 7) user is $(tput setaf 6)solarity$(tput sgr0)$(tput bold).
|
||||||
|
Type $(tput setaf 5)labwc$(tput sgr0)$(tput bold) to launch a GUI.
|
||||||
|
\n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e -n $(tput sgr0)
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
# shell=$SHELL (if set, otherwise user's default shell from /etc/passwd)
|
# shell=$SHELL (if set, otherwise user's default shell from /etc/passwd)
|
||||||
# term=foot (or xterm-256color if built with -Dterminfo=disabled)
|
# term=foot (or xterm-256color if built with -Dterminfo=disabled)
|
||||||
|
term=foot-extra
|
||||||
# login-shell=no
|
# login-shell=no
|
||||||
|
|
||||||
# app-id=foot
|
# app-id=foot
|
||||||
|
|
|
@ -55,11 +55,11 @@
|
||||||
</keybind>
|
</keybind>
|
||||||
|
|
||||||
<keybind key="XF86_MonBrightnessUp">
|
<keybind key="XF86_MonBrightnessUp">
|
||||||
<action name="Execute"><command>light -A 5</command></action>
|
<action name="Execute"><command>brightnessctl s +5%</command></action>
|
||||||
</keybind>
|
</keybind>
|
||||||
|
|
||||||
<keybind key="XF86_MonBrightnessDown">
|
<keybind key="XF86_MonBrightnessDown">
|
||||||
<action name="Execute"><command>light -U 5</command></action>
|
<action name="Execute"><command>brightnessctl s 5%-</command></action>
|
||||||
</keybind>
|
</keybind>
|
||||||
</keyboard>
|
</keyboard>
|
||||||
</labwc_config>
|
</labwc_config>
|
||||||
|
|
|
@ -123,8 +123,8 @@
|
||||||
"format-alt": "{percent}% {icon}",
|
"format-alt": "{percent}% {icon}",
|
||||||
"format-alt-click": "click-right",
|
"format-alt-click": "click-right",
|
||||||
"format-icons": ["", "", ""],
|
"format-icons": ["", "", ""],
|
||||||
"on-scroll-down": "light -U 1",
|
"on-scroll-down": "brightnessctl s 1%-",
|
||||||
"on-scroll-up": "light -A 1"
|
"on-scroll-up": "brightnessctl s +1%"
|
||||||
},
|
},
|
||||||
|
|
||||||
"custom/weather": {
|
"custom/weather": {
|
||||||
|
|
|
@ -134,7 +134,6 @@ qt6ct
|
||||||
pipewire
|
pipewire
|
||||||
pipewire-jack
|
pipewire-jack
|
||||||
pipewire-pulse
|
pipewire-pulse
|
||||||
light
|
|
||||||
pavucontrol-qt
|
pavucontrol-qt
|
||||||
mpv
|
mpv
|
||||||
yt-dlp
|
yt-dlp
|
||||||
|
@ -262,3 +261,13 @@ arch-wiki-docs
|
||||||
arch-wiki-lite
|
arch-wiki-lite
|
||||||
zenity
|
zenity
|
||||||
dialog
|
dialog
|
||||||
|
brightnessctl
|
||||||
|
gvfs
|
||||||
|
gvfs-afc
|
||||||
|
gvfs-goa
|
||||||
|
gvfs-google
|
||||||
|
gvfs-gphoto2
|
||||||
|
gvfs-mtp
|
||||||
|
gvfs-nfs
|
||||||
|
gvfs-smb
|
||||||
|
foot-terminfo
|
||||||
|
|
|
@ -26,4 +26,5 @@ file_permissions=(
|
||||||
["/usr/local/bin/Installation_guide"]="0:0:755"
|
["/usr/local/bin/Installation_guide"]="0:0:755"
|
||||||
["/usr/local/bin/livecd-sound"]="0:0:755"
|
["/usr/local/bin/livecd-sound"]="0:0:755"
|
||||||
["/usr/local/bin/import-gsettings"]="0:0:755"
|
["/usr/local/bin/import-gsettings"]="0:0:755"
|
||||||
|
["/etc/profile.d/99-greeting.sh"]="0:0:755"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue