conky.config = {
alignment = 'top_right',
use_xft = true,
xftalpha = 0.8,
font = 'Noto:normal:size=9',
text_buffer_size = 2048,
update_interval = 1.0,
wip:
Work in progress, i.e., partial commits that haven't been finalizedi18n:
Changes related to internationalization, such as translations or word changes for multilingual supportperf:
Optimizations aimed at improving the performance or efficiency of the coderefactor:
Code refactoring aimed at improving organization or readability without changing functionalityformat:
Purely aesthetic changes that don't affect the logic of the code, such as spacing and formattingdocs:
Modifications pertaining to project documentation, such as addition, removal, or updating of informationfeat:
Implementation of new features or resources in the projectfix:
Bug fixes or issues that were affecting the functionality or use of the projecttest:
Addition or modification of tests to ensure correctness and functionality of the code
This file contains 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
sudo a2dismod php8.1 | |
sudo a2enmod php7.4 | |
sudo systemctl restart apache2 |
This file contains 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
npm i -D @types/node |
This file contains 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
... | |
export default defineConfig({ | |
... | |
build: { | |
rollupOptions: { | |
output: { | |
assetFileNames: (asset) => { | |
let typePath = 'static/styles' | |
const type = asset.name.split('.').at(-1) | |
if (/png|jpe?g|webp|svg|gif|tiff|bmp|ico/i.test(type)) { |