This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Affiche une alerte pour confirmer le chargement du script | |
alert('Le fichier custom_style.js est bien chargé !'); | |
// Affiche un message dans la console du navigateur pour confirmation supplémentaire | |
console.log('Le fichier custom_style.js a été chargé avec succès.'); | |
// Créer une balise <style> et ajouter du CSS | |
const style = document.createElement('style'); | |
style.innerHTML = ` | |
ha-card { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ha-card { | |
background: red !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# --- README ------------------------------------------------ | |
# KDE Neon widgets are linked to a screen by foreign keys. | |
# For example the widget '[Containments][23]' has 'lastScreen=1' | |
# This script moves the widget '[23]' from the screen '1' to your desired screen ID. | |
# ----------------------------------------------------------- |