This is a workaround to make the SSD 2.5" work!
- Create
/etc/initcpio/install/load_ssd
and/etc/initcpio/hooks/load_ssd
- Edit
/etc/mkinitcpio.conf
- Run
sudo mkinitcpio -P
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:-//UFSCar Calendar//UFSCar// | |
X-WR-CALNAME:UFSCar Calendar | |
X-WR-TIMEZONE:America/Sao_Paulo | |
BEGIN:VEVENT | |
SUMMARY:Feriado (Sexta Feira Santa). | |
DTSTART;TZID=America/Sao_Paulo:20230407T000000 | |
DTEND;TZID=America/Sao_Paulo:20230408T000000 | |
DTSTAMP:20230305T220723Z |
This is a workaround to make the SSD 2.5" work!
/etc/initcpio/install/load_ssd
and /etc/initcpio/hooks/load_ssd
/etc/mkinitcpio.conf
sudo mkinitcpio -P
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]$\[\033[00m\] ' |
set number | |
set smarttab | |
set cindent | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set encoding=UTF-8 | |
syntax on |
# Remember to use in the .asm file | |
# INCLUDE Irvine32.inc | |
# INCLUDELIB User32.Lib | |
# INCLUDELIB Kernel32.Lib | |
# INCLUDELIB Irvine32.Lib | |
ML=ml | |
LINK=link | |
MASMPATH=C:\masm32 |
--- | |
BasedOnStyle: LLVM | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: 'true' | |
AlignConsecutiveDeclarations: 'true' | |
AlignEscapedNewlines: Left | |
AlignOperands: 'false' | |
AlignTrailingComments: 'true' | |
AllowAllParametersOfDeclarationOnNextLine: 'false' | |
AllowShortBlocksOnASingleLine: 'true' |