wsl --install wsl --set-default-version 2 wsl --help wsl -l -o wsl -l -all
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
# elementaryOS 8 after install | |
sudo apt update && sudo apt upgrade | |
sudo ubuntu-drivers autoinstall | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install ubuntu-restricted-extras libavcodec-extra ffmpeg curl wget | |
# sudo apt install libdvd-pkg | |
sudo apt install rar unrar zip unzip xz-utils p7zip-full p7zip-rar sharutils file-roller | |
sudo apt install synaptic gdebi dconf-editor |
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
#!/bin/bash | |
####################################################################################### | |
# | |
# MIT License | |
# | |
# Copyright (c) 2014-2024 HomeInside Inc. and other contributors, | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
gen-req reads a 'pyproject.toml' (Poetry) file and exports the list of dependencies to a 'requirements.txt' file, in a more easily understood, simple and traditional way.
Copyright (c) 2021 Jorge Brunal Perez diniremix@gmail.com
gen-req is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either
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
# KDE Neon 15.18.0 post install | |
# first step, upgrade | |
sudo pkcon refresh | |
sudo pkcon update | |
# opera web browser | |
wget -qO- https://deb.opera.com/archive.key | sudo apt-key add - | |
sudo add-apt-repository 'deb https://deb.opera.com/opera-stable/ stable non-free' | |
sudo apt-get update |
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
# elementary OS Hera post install | |
# first step, upgrade | |
sudo apt update && sudo apt upgrade | |
sudo apt install ubuntu-restricted-extras | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install libavcodec-extra ffmpeg | |
sudo apt install firefox vlc | |
sudo apt install screenfetch flameshot |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>docsify</title> | |
<link rel="icon" href="_media/favicon.ico"> | |
<meta name="keywords" content="doc,docs,documentation,docsify,gitbook,creator,generator,github,jekyll,github-pages"> | |
<meta name="description" content="A magical documentation generator."> | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
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
# elementary OS post install | |
sudo apt update && sudo apt upgrade | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install ubuntu-restricted-extras libavcodec-extra ffmpeg | |
sudo apt install firefox vlc | |
sudo apt install audacious audacious-plugins | |
sudo apt install screenfetch |
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
#!/bin/bash | |
if [ $# -le 0 ];then | |
echo -e $0: Especifique un nombre de archivo javascript; | |
exit 1; | |
fi | |
JS=$1; | |
function convert() { | |
if [ -e $JS ]; then | |
FILENAME=$(basename "$JS") |
NewerOlder