Enhance GTK theme configuration and taskbar setup in cloud-init scripts</message>
<message>Update the cloud-init scripts to improve GTK theme settings by enforcing dark mode through gsettings and preserving the icon theme for a cohesive user experience. Additionally, enhance the first-boot script to install a Chromium kiosk launcher icon on the desktop and in the application menu, along with a five-tap close functionality for Chromium. These changes streamline the user interface and ensure a consistent dark theme across applications and the taskbar.
This commit is contained in:
@@ -1,31 +1,30 @@
|
||||
/* Custom wf-panel-pi theme – dark, rounded panel
|
||||
* Place at ~/.config/wf-panel-pi/panel-theme.css
|
||||
* Set css_path in wf-panel-pi.ini to this file (absolute path).
|
||||
/* Minimal dark taskbar – flat, touch-friendly
|
||||
* Colors match Adwaita-dark (window bg #242424) so taskbar fits dark mode.
|
||||
* Icon theme PiXtrix (start-here) set in gtk-3.0/settings.ini.
|
||||
*/
|
||||
|
||||
/* Panel window */
|
||||
window {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* Main panel box – dark with slight rounding and shadow */
|
||||
/* Flat bar: Adwaita-dark window bg so theme is consistent */
|
||||
window box {
|
||||
background-color: rgba(45, 45, 45, 0.96);
|
||||
border-radius: 10px;
|
||||
margin: 4px;
|
||||
padding: 2px 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
|
||||
background-color: #242424;
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
padding: 4px 8px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Plugin / launcher buttons */
|
||||
button,
|
||||
button:hover,
|
||||
button:active {
|
||||
/* Touch-friendly buttons: min 32px, clear hit area */
|
||||
button {
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
padding: 4px;
|
||||
border-radius: 4px;
|
||||
padding: 6px;
|
||||
min-width: 32px;
|
||||
min-height: 32px;
|
||||
color: #e0e0e0;
|
||||
}
|
||||
|
||||
@@ -37,7 +36,6 @@ button:active {
|
||||
background: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
/* Labels (e.g. clock text) */
|
||||
label {
|
||||
color: #e0e0e0;
|
||||
font-size: 11pt;
|
||||
|
||||
Reference in New Issue
Block a user