Config sway: Difference between revisions
Appearance
Created page with "= Sway = installa le dipendenze <syntaxhighlight lang='bash'> sudo apt install alacritty light sway swaybg swayimg swaylock waybar wofi fonts-font-awesome </syntaxhighlight>" |
No edit summary |
||
Line 4: | Line 4: | ||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
sudo apt install alacritty light sway swaybg swayimg swaylock waybar wofi fonts-font-awesome | sudo apt install alacritty light sway swaybg swayimg swaylock waybar wofi fonts-font-awesome | ||
</syntaxhighlight> | |||
copia il file di config di <code>sway</code> nella cartella .config dell'utente | |||
<syntaxhighlight lang='bash'> | |||
mkdir -p ~/.config/sway | |||
cp /etc/sway/config ~/.config/sway/config | |||
</syntaxhighlight> | |||
avvialo al login dell'utente | |||
<syntaxhighlight lang='bash'> | |||
echo -e "\n# Esegui sway al login\nexec sway\n" >> ~/.profile | |||
</syntaxhighlight> | |||
setta il font e sizeFont del terminale <code>foot</code> | |||
<syntaxhighlight lang='bash'> | |||
mkdir -p ~/.config/foot | |||
echo -e "\n# Setta il font e sizeFont\nfont=monospace:size=14\n" > ~/.config/foot/foot.ini | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 13:59, 11 August 2025
Sway
installa le dipendenze
sudo apt install alacritty light sway swaybg swayimg swaylock waybar wofi fonts-font-awesome
copia il file di config di sway
nella cartella .config dell'utente
mkdir -p ~/.config/sway
cp /etc/sway/config ~/.config/sway/config
avvialo al login dell'utente
echo -e "\n# Esegui sway al login\nexec sway\n" >> ~/.profile
setta il font e sizeFont del terminale foot
mkdir -p ~/.config/foot
echo -e "\n# Setta il font e sizeFont\nfont=monospace:size=14\n" > ~/.config/foot/foot.ini