Compare commits
8 Commits
87a90a53c7
...
92c74e0e8f
Author | SHA1 | Date |
---|---|---|
|
92c74e0e8f | |
|
d2f809e3cb | |
|
1a3971d5c3 | |
|
7b5c0c2f23 | |
|
eccfbbe5b1 | |
|
c22ba078b8 | |
|
24bc2a8320 | |
|
4a10d2775a |
|
@ -0,0 +1,123 @@
|
||||||
|
call plug#begin()
|
||||||
|
Plug 'preservim/nerdtree'
|
||||||
|
Plug 'vimwiki/vimwiki'
|
||||||
|
Plug 'ryanoasis/vim-devicons'
|
||||||
|
Plug 'tribela/vim-transparent'
|
||||||
|
Plug 'ap/vim-css-color'
|
||||||
|
Plug 'theRealCarneiro/hyprland-vim-syntax'
|
||||||
|
Plug 'vim-airline/vim-airline'
|
||||||
|
Plug 'catppuccin/vim', { 'as': 'catppuccin' }
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set termguicolors
|
||||||
|
|
||||||
|
syntax on
|
||||||
|
|
||||||
|
set background=dark
|
||||||
|
|
||||||
|
set ttyfast
|
||||||
|
|
||||||
|
set cursorline
|
||||||
|
|
||||||
|
set autoindent
|
||||||
|
set smartindent
|
||||||
|
|
||||||
|
set cmdheight=1
|
||||||
|
"set smartcase
|
||||||
|
|
||||||
|
"set hlsearch
|
||||||
|
set incsearch
|
||||||
|
|
||||||
|
set ignorecase
|
||||||
|
|
||||||
|
set clipboard=unnamedplus
|
||||||
|
|
||||||
|
"set wildmode=longest,list
|
||||||
|
set noswapfile
|
||||||
|
|
||||||
|
autocmd SwapExists * let v:swapchoice = "e"
|
||||||
|
|
||||||
|
set clipboard=unnamedplus
|
||||||
|
|
||||||
|
set number relativenumber
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
colorscheme catppuccin_mocha
|
||||||
|
|
||||||
|
if has("autocmd")
|
||||||
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | execute "normal! g`\"" | endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
"inoremap <silent><expr> <TAB>
|
||||||
|
" \ coc#pum#visible() ? coc#pum#next(1) :
|
||||||
|
" \ CheckBackspace() ? "\<Tab>" :
|
||||||
|
" \ coc#refresh()
|
||||||
|
"inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||||
|
|
||||||
|
|
||||||
|
nnoremap nn :NERDTreeToggle<CR>
|
||||||
|
|
||||||
|
"nnoremap ff :wincmd p<CR>
|
||||||
|
nnoremap xs :w<CR>
|
||||||
|
|
||||||
|
nnoremap tt :tabnew<CR>
|
||||||
|
nnoremap tq :tabclose<CR>
|
||||||
|
|
||||||
|
let NERDTreeShowHidden=1
|
||||||
|
|
||||||
|
"autocmd VimEnter * NERDTree | wincmd p
|
||||||
|
|
||||||
|
" Start NERDTree when Vim is started without file arguments.
|
||||||
|
autocmd StdinReadPre * let s:std_in=1
|
||||||
|
|
||||||
|
autocmd VimEnter * if argc() == 0 && !exists('s:std_in') | NERDTree | endif
|
||||||
|
|
||||||
|
" Exit Vim if NERDTree is the only window remaining in the only tab.
|
||||||
|
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
|
||||||
|
|
||||||
|
|
||||||
|
let g:startify_lists = [
|
||||||
|
\ { 'type': 'files', 'header': [' Files'] },
|
||||||
|
\ { 'type': 'dir', 'header': [' Files '. getcwd()] },
|
||||||
|
\ ]
|
||||||
|
|
||||||
|
let g:startify_custom_header = [
|
||||||
|
\ ' ',
|
||||||
|
\ ' __ ',
|
||||||
|
\ ' __ __ /\_\ ___ ___ ',
|
||||||
|
\ ' /\ \/\ \\/\ \ /'' __` __`\ ',
|
||||||
|
\ ' \ \ \_/ |\ \ \/\ \/\ \/\ \ ',
|
||||||
|
\ ' \ \___/ \ \_\ \_\ \_\ \_\ ',
|
||||||
|
\ ' \/__/ \/_/\/_/\/_/\/_/ ',
|
||||||
|
\ ]
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
"AirLine Things
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
if !exists('g:airline_symbols')
|
||||||
|
let g:airline_symbols = {}
|
||||||
|
endif
|
||||||
|
let g:airline_left_sep = ''
|
||||||
|
let g:airline_right_sep = ''
|
||||||
|
|
||||||
|
let g:airline_section_z = airline#section#create(['linenr','/%v', ])
|
||||||
|
let g:airline_skip_empty_sections = 1
|
||||||
|
let g:airline_extensions = []
|
||||||
|
let g:airline_section_x = ''
|
||||||
|
let g:airline_symbols.maxlinenr = 'll'
|
||||||
|
let g:airline_symbols.linenr = 'L/S: '
|
||||||
|
|
||||||
|
|
||||||
|
"LightLine Things
|
||||||
|
"set laststatus=2
|
||||||
|
"if !has('gui_running')
|
||||||
|
" set t_Co=256
|
||||||
|
"endif
|
||||||
|
"let g:lightline = {
|
||||||
|
" \ 'colorscheme': 'catppuccin_mocha',
|
||||||
|
" \ }
|
|
@ -0,0 +1,80 @@
|
||||||
|
" =============================================================================
|
||||||
|
" Filename: autoload/airline/themes/catppuccin_mocha.vim
|
||||||
|
" Author: tilmaneggers
|
||||||
|
" License: MIT License
|
||||||
|
" Last Change: 2023/01/19
|
||||||
|
"
|
||||||
|
" =============================================================================
|
||||||
|
|
||||||
|
" Original theme colors
|
||||||
|
let s:rosewater = "#F5E0DC"
|
||||||
|
let s:flamingo = "#F2CDCD"
|
||||||
|
let s:pink = "#F5C2E7"
|
||||||
|
let s:mauve = "#CBA6F7"
|
||||||
|
let s:red = "#F38BA8"
|
||||||
|
let s:maroon = "#EBA0AC"
|
||||||
|
let s:peach = "#FAB387"
|
||||||
|
let s:yellow = "#F9E2AF"
|
||||||
|
let s:green = "#A6E3A1"
|
||||||
|
let s:teal = "#94E2D5"
|
||||||
|
let s:sky = "#89DCEB"
|
||||||
|
let s:sapphire = "#74C7EC"
|
||||||
|
let s:blue = "#89B4FA"
|
||||||
|
let s:lavender = "#B4BEFE"
|
||||||
|
"
|
||||||
|
let s:text = "#CDD6F4"
|
||||||
|
let s:subtext1 = "#BAC2DE"
|
||||||
|
let s:subtext0 = "#A6ADC8"
|
||||||
|
let s:overlay2 = "#9399B2"
|
||||||
|
let s:overlay1 = "#7F849C"
|
||||||
|
let s:overlay0 = "#6C7086"
|
||||||
|
let s:surface2 = "#585B70"
|
||||||
|
let s:surface1 = "#45475A"
|
||||||
|
let s:surface0 = "#313244"
|
||||||
|
"
|
||||||
|
let s:base = "#1E1E2E"
|
||||||
|
let s:mantle = "#181825"
|
||||||
|
let s:crust = "#11111B"
|
||||||
|
|
||||||
|
" Normal mode
|
||||||
|
" (Dark)
|
||||||
|
let s:N1 = [ s:mantle , s:lavender , 59 , 149 ] " guifg guibg ctermfg ctermbg
|
||||||
|
let s:N2 = [ s:lavender , s:surface1 , 149 , 59 ] " guifg guibg ctermfg ctermbg
|
||||||
|
let s:N3 = [ s:text , s:base , 145 , 16 ] " guifg guibg ctermfg ctermbg
|
||||||
|
|
||||||
|
" Insert mode
|
||||||
|
let s:I1 = [ s:mantle , s:rosewater , 59 , 74 ] " guifg guibg ctermfg ctermbg
|
||||||
|
let s:I2 = [ s:rosewater , s:surface1 , 74 , 59 ] " guifg guibg ctermfg ctermbg
|
||||||
|
let s:I3 = [ s:text , s:base , 145 , 16 ] " guifg guibg ctermfg ctermbg
|
||||||
|
|
||||||
|
" Visual mode
|
||||||
|
let s:V1 = [ s:mantle , s:pink , 59 , 209 ] " guifg guibg ctermfg ctermbg
|
||||||
|
let s:V2 = [ s:pink , s:surface1 , 209 , 59 ] " guifg guibg ctermfg ctermbg
|
||||||
|
let s:V3 = [ s:text , s:base , 145 , 16 ] " guifg guibg ctermfg ctermbg
|
||||||
|
|
||||||
|
" Replace mode
|
||||||
|
let s:RE = [ s:mantle , s:red , 59 , 203 ] " guifg guibg ctermfg ctermbg
|
||||||
|
|
||||||
|
" Warning section
|
||||||
|
let s:WR = [s:mantle ,s:peach , 232, 166 ]
|
||||||
|
|
||||||
|
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette = {}
|
||||||
|
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.normal = airline#themes#generate_color_map(s:N1, s:N2, s:N3)
|
||||||
|
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.insert = airline#themes#generate_color_map(s:I1, s:I2, s:I3)
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.insert_replace = {
|
||||||
|
\ 'airline_a': [ s:RE[0] , s:I1[1] , s:RE[1] , s:I1[3] , '' ] }
|
||||||
|
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.visual = airline#themes#generate_color_map(s:V1, s:V2, s:V3)
|
||||||
|
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.replace = copy(g:airline#themes#catppuccin_mocha#palette.normal)
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.replace.airline_a = [ s:RE[0] , s:RE[1] , s:RE[2] , s:RE[3] , '' ]
|
||||||
|
|
||||||
|
let s:IA = [ s:N1[1] , s:N3[1] , s:N1[3] , s:N3[3] , '' ]
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.inactive = airline#themes#generate_color_map(s:IA, s:IA, s:IA)
|
||||||
|
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.normal.airline_warning = s:WR
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.insert.airline_warning = s:WR
|
||||||
|
let g:airline#themes#catppuccin_mocha#palette.visual.airline_warning = s:WR
|
|
@ -215,20 +215,20 @@
|
||||||
|
|
||||||
# SDL and sdl_glsl only support hex code colors, these are the default:
|
# SDL and sdl_glsl only support hex code colors, these are the default:
|
||||||
; background = '#111111'
|
; background = '#111111'
|
||||||
; foreground = '#33ffff'
|
foreground = '#b4befe'
|
||||||
|
|
||||||
|
|
||||||
# Gradient mode, only hex defined colors are supported,
|
# Gradient mode, only hex defined colors are supported,
|
||||||
# background must also be defined in hex or remain commented out. 1 = on, 0 = off.
|
# background must also be defined in hex or remain commented out. 1 = on, 0 = off.
|
||||||
# You can define as many as 8 different colors. They range from bottom to top of screen
|
# You can define as many as 8 different colors. They range from bottom to top of screen
|
||||||
|
|
||||||
gradient = 1
|
#gradient = 1
|
||||||
gradient_count = 2
|
#gradient_count = 2
|
||||||
#gradient_color_1 = '#31748f'
|
#gradient_color_1 = '#31748f'
|
||||||
#gradient_color_2 = '#9ccfd8'
|
#gradient_color_2 = '#9ccfd8'
|
||||||
#gradient_color_1 = '#cba6f7'
|
#gradient_color_1 = '#cba6f7'
|
||||||
gradient_color_1 = '#f5c2e7'
|
#gradient_color_1 = '#f5c2e7'
|
||||||
gradient_color_2 = '#b4befe'
|
#gradient_color_2 = '#b4befe'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,14 +7,14 @@ window {
|
||||||
|
|
||||||
#window-box {
|
#window-box {
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
border-radius: 12px;
|
border-radius: 35px;
|
||||||
box-shadow: rgba(0, 0, 0, 0.56) 4 4 5 2px;
|
/*box-shadow: rgba(0, 0, 0, 0.56) 4 4 5 2px;
|
||||||
/*box-shadow: 1 1 3 1px #101010;*/
|
box-shadow: 1 1 3 1px #101010;*/
|
||||||
background-color: #181825;
|
background-color: #181825;
|
||||||
color: #cdd6f4;
|
color: #cdd6f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock-label {
|
#clock-label {
|
||||||
font-family: RobotoMonoNerdFontMono;
|
font-family: RobotoMonoNerdFontMono;
|
||||||
font-size: 54px;
|
font-size: 60px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,9 +4,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
format = """
|
format = """$username$directory$git_status$character
|
||||||
$username$directory$git_status
|
|
||||||
$character
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Sets user-defined palette
|
# Sets user-defined palette
|
||||||
|
@ -14,16 +12,16 @@ palette = "catppuccin_mocha"
|
||||||
|
|
||||||
[character]
|
[character]
|
||||||
# Note the use of Catppuccin color 'maroon'
|
# Note the use of Catppuccin color 'maroon'
|
||||||
success_symbol = "[└](bold overlay0)[ ](bold lavender)"
|
success_symbol = "[ ](bold lavender)"
|
||||||
error_symbol = "[└](bold overlay0)[ ](bold maroon)"
|
error_symbol = "[ ](bold maroon)"
|
||||||
vimcmd_symbol = "[└](bold overlay0)[ ](bold teal)"
|
vimcmd_symbol = "[ ](bold teal)"
|
||||||
#error_symbol = "[└ ](bold maroon)"
|
#error_symbol = "[└ ](bold maroon)"
|
||||||
#vimcmd_symbol = "[└ ](sky)"
|
#vimcmd_symbol = "[└ ](sky)"
|
||||||
|
|
||||||
[directory]
|
[directory]
|
||||||
truncation_length = 4
|
truncation_length = 4
|
||||||
read_only = " read "
|
read_only = " read "
|
||||||
format = "[─ $path ]($style)"
|
format = "[$path]($style)"
|
||||||
# Catppuccin 'lavender'
|
# Catppuccin 'lavender'
|
||||||
#style = "bold text"
|
#style = "bold text"
|
||||||
style = "bold overlay0"
|
style = "bold overlay0"
|
||||||
|
@ -31,7 +29,7 @@ style = "bold overlay0"
|
||||||
[username]
|
[username]
|
||||||
style_user = "bold overlay0"
|
style_user = "bold overlay0"
|
||||||
style_root = "bold red"
|
style_root = "bold red"
|
||||||
format = "[┌](bold overlay0)[ $user ]($style)"
|
format = "($style)"
|
||||||
disabled = false
|
disabled = false
|
||||||
show_always = true
|
show_always = true
|
||||||
|
|
||||||
|
|
12
README.md
|
@ -1,11 +1,11 @@
|
||||||
<h1 align="center"> My daily driver rice named <code>Amella</code>. v1.2</h1>
|
<h1 align="center"> My daily driver rice named <code>Amella</code>. v2.0.</h1>
|
||||||
<br>
|
<br>
|
||||||
# This repo is for my personal usage firstly.
|
# This repo is for my personal usage firstly.
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
## Software
|
## Software
|
||||||
<img src="Screenshots/Scr-113.png" alt="rice" align="right" width="500px">
|
<img src="Screenshots/Scr-1113.png" alt="rice" align="right" width="500px">
|
||||||
<img src="Screenshots/Scr-111.png" alt="rice" align="right" width="500px">
|
<img src="Screenshots/Scr-1111.png" alt="rice" align="right" width="500px">
|
||||||
|
|
||||||
**Desktop:**
|
**Desktop:**
|
||||||
- OS: [**`Artix`**](https://artixlinux.org/)
|
- OS: [**`Artix`**](https://artixlinux.org/)
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
- Music - [**`Cmus`**](https://cmus.github.io/);
|
- Music - [**`Cmus`**](https://cmus.github.io/);
|
||||||
- Images - [**`Swayimg`**](https://github.com/artemsen/swayimg);
|
- Images - [**`Swayimg`**](https://github.com/artemsen/swayimg);
|
||||||
- Browser - [**`Waterfox`**](https://www.waterfox.net/);
|
- Browser - [**`Waterfox`**](https://www.waterfox.net/);
|
||||||
- Chating - [**`64Gram Desktop`**](https://github.com/TDesktop-x64/tdesktop);
|
- Chating - [**`AyuGram Desktop`**](https://github.com/AyuGram/AyuGramDesktop);
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
@ -39,3 +39,7 @@
|
||||||
- Tty - [**`Catppuccin Mocha`**](https://github.com/catppuccin/tty);
|
- Tty - [**`Catppuccin Mocha`**](https://github.com/catppuccin/tty);
|
||||||
- Cmus - [**`Catppuccin`**](https://github.com/Sekki21956/cmus);
|
- Cmus - [**`Catppuccin`**](https://github.com/Sekki21956/cmus);
|
||||||
- Font - [**`Roboto Mono Nerd`**](https://www.nerdfonts.com/font-downloads);
|
- Font - [**`Roboto Mono Nerd`**](https://www.nerdfonts.com/font-downloads);
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
- Clone this repo and run the install.sh.
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
- Arch repos
|
||||||
|
1. Add this lines into /etc/pacman.conf
|
||||||
|
[universe]
|
||||||
|
Server = https://universe.artixlinux.org/$arch
|
||||||
|
Server = https://mirror1.artixlinux.org/universe/$arch
|
||||||
|
Server = https://mirror.pascalpuffke.de/artix-universe/$arch
|
||||||
|
Server = https://artixlinux.qontinuum.space/artixlinux/universe/os/$arch
|
||||||
|
Server = https://mirror1.cl.netactuate.com/artix/universe/$arch
|
||||||
|
Server = https://ftp.crifo.org/artix-universe/$arch
|
||||||
|
Server = https://artix.sakamoto.pl/universe/$arch
|
||||||
|
|
||||||
|
2. Sync
|
||||||
|
sudo pacman -Sy
|
||||||
|
|
||||||
|
3. Install Arch repos support package
|
||||||
|
sudo pacman -Syu artix-archlinux-support
|
||||||
|
|
||||||
|
4. Add this lines into /etc/pacman.conf
|
||||||
|
[extra]
|
||||||
|
Include = /etc/pacman.d/mirrorlist-arch
|
||||||
|
[community]
|
||||||
|
Include = /etc/pacman.d/mirrorlist-arch
|
||||||
|
|
||||||
|
5. Comment the default mirror and uncomment this in /etc/pacman.d/mirrorlist-arch:
|
||||||
|
Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch
|
||||||
|
Server = http://mirrors.powernet.com.ru/archlinux/$repo/os/$arch
|
Before Width: | Height: | Size: 983 KiB |
After Width: | Height: | Size: 185 KiB |
After Width: | Height: | Size: 286 KiB |
After Width: | Height: | Size: 486 KiB |
After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 1014 KiB |
Before Width: | Height: | Size: 674 KiB |
Before Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 970 KiB |
|
@ -0,0 +1,30 @@
|
||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
#ADD ARCH REPOS FIRST.
|
||||||
|
sudo pacman -S git man
|
||||||
|
|
||||||
|
git clone https://aur.archlinux.org/paru-bin.git
|
||||||
|
makepkg -sic
|
||||||
|
|
||||||
|
paru -S foot waybar waterfox-bin swaybg swayimg gtklock lf starship googledot-cursor-theme catppuccin-gtk-theme-mocha krita mpv wf-recorder transmission-gtk prismlauncher-qt5-bin pipewire pipewire-pulse wireplumber bluez bluez-runit bluez-utils htop grim slurp cmus tlp-runit bc unzip pulsemixer chafa noto-fonts-cjk noto-fonts-extra cava eza lxappearence papirus-icon-theme
|
||||||
|
|
||||||
|
sudo pacman -U /home/lilac/MainDots/Pkgs/hyprland-0.35.0-1-x86_64.pkg.tar.zst
|
||||||
|
sudo pacman -U /home/lilac/MainDots/Pkgs/spdlog-1.13.0-1-x86_64.pkg.tar.zst
|
||||||
|
sudo pacman -U /home/lilac/MainDots/Pkgs/waybar-0.10.0-4-x86_64.pkg.tar.zst
|
||||||
|
sudo pacman -U /home/lilac/MainDots/Pkgs/ayugram-desktop-4.16.8-1-x86_64.pkg.tar.zst
|
||||||
|
|
||||||
|
mkdir /home/lilac/.config
|
||||||
|
mkdir -p /home/lilac/Media/Pics/Walls
|
||||||
|
mkdir -p /home/lilac/Media/Pics/Scr
|
||||||
|
mkdir -p /home/lilac/Media/Mus
|
||||||
|
mkdir -p /home/lilac/Media/Docs
|
||||||
|
mkdir -p /home/lilac/Downloads
|
||||||
|
|
||||||
|
cp -r /home/lilac/MainDots/Configs/* /home/lilac/.config/
|
||||||
|
cp -r /home/lilac/MainDots/Wallpapers/* /home/lilac/Media/Pics/Walls/
|
||||||
|
|
||||||
|
gsettings set org.gnome.desktop.interface gtk-theme Catppuccin-Mocha-Standard-Lavender-Dark
|
||||||
|
gsettings set org.gnome.desktop.interface font-name RobotoMonoNerdFont
|
||||||
|
gsettings set org.gnome.desktop.interface icon-theme Papirus-Dark
|
||||||
|
gsettings set org.gnome.desktop.interface cursor-size 28
|
||||||
|
gsettings set org.gnome.desktop.interface cursor-theme GoogleDot-White
|