diff --git a/.Xresources b/.Xresources old mode 100644 new mode 100755 index f0c1290..ea0cc9c --- a/.Xresources +++ b/.Xresources @@ -1,3 +1,5 @@ +Xcursor.size: 20 + ! special *.foreground: #ffffff *.background: #1f1f2b diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc old mode 100644 new mode 100755 diff --git a/.config/nvim/.netrwhist b/.config/nvim/.netrwhist old mode 100644 new mode 100755 diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim old mode 100644 new mode 100755 index 728a68f..f3acd60 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -19,6 +19,8 @@ call plug#begin('~/.vim/plugged') Plug 'junegunn/goyo.vim' " Distraction-free viewing Plug 'junegunn/limelight.vim' " Hyperfocus on a range Plug 'junegunn/vim-emoji' " Vim needs emojis! +"{{ Language specific }} + Plug 'mattn/emmet-vim' " Emmet for web-gay developing call plug#end() diff --git a/.config/nvim/nvim/.netrwhist b/.config/nvim/nvim/.netrwhist deleted file mode 100644 index 4ab4be0..0000000 --- a/.config/nvim/nvim/.netrwhist +++ /dev/null @@ -1,12 +0,0 @@ -let g:netrw_dirhistmax =10 -let g:netrw_dirhistcnt =7 -let g:netrw_dirhist_7='/etc/runit/runsvdir/default/lightdm/supervise' -let g:netrw_dirhist_6='/etc/runit/runsvdir/default/lightdm' -let g:netrw_dirhist_5='/etc/runit/runsvdir/default/alsa' -let g:netrw_dirhist_4='/etc/alsa/conf.d' -let g:netrw_dirhist_3='/home/rinri/.local/share/osu' -let g:netrw_dirhist_2='/home/rinri/.local/share/osu/files' -let g:netrw_dirhist_1='/home/rinri/.local/share/osu/files/8' -let g:netrw_dirhist_0='/home/rinri/.local/share/osu/files' -let g:netrw_dirhist_9='/home/rinri/.local/share/osu' -let g:netrw_dirhist_8='/home/rinri/.local/share/osu/screenshots' diff --git a/.config/nvim/nvim/init.vim b/.config/nvim/nvim/init.vim deleted file mode 100644 index f3acd60..0000000 --- a/.config/nvim/nvim/init.vim +++ /dev/null @@ -1,114 +0,0 @@ -call plug#begin('~/.vim/plugged') - -"{{ The Basics }} - Plug 'gmarik/Vundle.vim' " Vundle - Plug 'joshdick/onedark.vim' " Colors - Plug 'itchyny/lightline.vim' " Lightline statusbar - Plug 'suan/vim-instant-markdown', {'rtp': 'after'} " Markdown Preview - Plug 'frazrepo/vim-rainbow' -"{{ File management }} - Plug 'vifm/vifm.vim' " Vifm - Plug 'scrooloose/nerdtree' " Nerdtree - Plug 'tiagofumo/vim-nerdtree-syntax-highlight' " Highlighting Nerdtree - Plug 'ryanoasis/vim-devicons' " Icons for Nerdtree -"{{ Tim Pope Plugins }} - Plug 'tpope/vim-surround' " Change surrounding marks -"{{ Syntax Highlighting and Colors }} - Plug 'ap/vim-css-color' " Color previews for CSS -"{{ Junegunn Choi Plugins }} - Plug 'junegunn/goyo.vim' " Distraction-free viewing - Plug 'junegunn/limelight.vim' " Hyperfocus on a range - Plug 'junegunn/vim-emoji' " Vim needs emojis! -"{{ Language specific }} - Plug 'mattn/emmet-vim' " Emmet for web-gay developing - -call plug#end() - -" colorscheme -syntax on - -" brackets -inoremap " "" -inoremap ' '' -inoremap ( () -inoremap [ [] -inoremap { {} -inoremap { {}O -inoremap {; {};O - -" markdown -let g:instant_markdown_browser = "st surf" - -" Make Vim more useful -set nocompatible -" Use the OS clipboard by default (on versions compiled with `+clipboard`) -set clipboard+=unnamedplus -" Enhance command-line completion -set wildmenu -" Disables automatic commenting on newline: -autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o -" Allow cursor keys in insert mode -" Allow backspace in insert mode -set backspace=indent,eol,start -" Optimize for fast terminal connections -set ttyfast -" Add the g flag to search/replace by default -set gdefault -" Use UTF-8 without BOM -set encoding=utf-8 -" Change mapleader -let mapleader="," -" Don’t add empty newlines at the end of files -set binary -set noeol - -" 256 colors -set t_Co=256 -" Respect modeline in files -set modeline -set modelines=4 -" Enable per-directory .vimrc files and disable unsafe commands in them -set exrc -set secure -" Enable line numbers -set number -" Make tabs as wide as two spaces -set tabstop=4 -set shiftwidth=4 -set smarttab -set expandtab -" Highlight searches -set hlsearch -" Ignore case of searches -set ignorecase -" Highlight dynamically as pattern is typed -set incsearch -" Always show status line -set laststatus=2 -" Enable mouse in all modes -set mouse=a -" Disable error bells -set noerrorbells -" Don’t reset cursor to start of line when moving around. -set nostartofline -" Show the cursor position -set ruler -" Don’t show the intro message when starting Vim -set shortmess=atI -" Show the current mode -set showmode -" Show the filename in the window titlebar -set title -" Show the (partial) command as it’s being typed -set showcmd -" Use relative line numbers -if exists("&relativenumber") - set relativenumber - au BufReadPost * set relativenumber -endif -" Start scrolling three lines before the horizontal window border -set scrolloff=3 - -map c :w! \| !pdflatex % -map t :!st& -vnoremap "+y diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.xinitrc b/.xinitrc old mode 100644 new mode 100755 index 1be90c7..6230247 --- a/.xinitrc +++ b/.xinitrc @@ -1,2 +1,7 @@ export PATH=$PATH:/home/rinri/scripts -exec dwm +while true; do + # Log stderror to a file + dwm 2> ~/.dwm.log + # No error logging + #dwm >/dev/null 2>&1 +done diff --git a/.zshrc b/.zshrc old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 406e9df..bf55ca9 --- a/README.md +++ b/README.md @@ -5,13 +5,11 @@ - Terminal: [st](https://st.suckless.org/) - Editor: [neovim](https://neovim.io/) - Font: DejaVuMono Nerd Patched -- File manager: [lf](https://github.com/gokcehan/lf) - Music player: [cmus](https://github.com/cmus/cmus) - Video player: [mpv](https://mpv.io/) - Notifications: [Dunst](https://github.com/dunst-project/dunst) - Status bar: [slstatus](https://tools.suckless.org/slstatus/) - Email client: [neomutt](https://neomutt.org/) + [thunderbird](https://www.thunderbird.net) -- News(RSS) client: [newsboat](https://newsboat.org/) + [akregator](https://userbase.kde.org/Akregator) - Wallpaper: [pixiv](https://www.pixiv.net/en/artworks/23346358) ## Screenshots @@ -19,10 +17,10 @@ ### Clear: ![clear](clear.png) -### Neofetch + ranger: +### Neofetch: ![neofetch](neofetch.png) -### Music player with mixer(cmus + pulsemixer): +### Music player and mixer(cmus + pulsemixer): ![cmus](cmus.png) ### Text editor(neovim): diff --git a/clear.png b/clear.png index f83d68f..211fca4 100644 Binary files a/clear.png and b/clear.png differ diff --git a/cmus.png b/cmus.png index 6a04aa0..3467e0f 100644 Binary files a/cmus.png and b/cmus.png differ diff --git a/dunst.png b/dunst.png index 63343de..5460d66 100644 Binary files a/dunst.png and b/dunst.png differ diff --git a/firefox.png b/firefox.png index e468bf2..2b41855 100644 Binary files a/firefox.png and b/firefox.png differ diff --git a/neofetch.png b/neofetch.png old mode 100644 new mode 100755 index 7d462cc..f7bd883 Binary files a/neofetch.png and b/neofetch.png differ diff --git a/scripts/.gitignore b/scripts/.gitignore new file mode 100644 index 0000000..0f8323f --- /dev/null +++ b/scripts/.gitignore @@ -0,0 +1,3 @@ +anime.sh +upload.sh +download.sh \ No newline at end of file diff --git a/scripts/autostart.sh b/scripts/autostart.sh deleted file mode 100755 index 9cbef5f..0000000 --- a/scripts/autostart.sh +++ /dev/null @@ -1 +0,0 @@ -cmus diff --git a/scripts/color.sh b/scripts/color.sh new file mode 100755 index 0000000..76159ad --- /dev/null +++ b/scripts/color.sh @@ -0,0 +1,7 @@ +echo -en "\033[31m" ## red +eval $* | while read line; do + echo -en "\033[36m" ## blue + echo $line + echo -en "\033[31m" ## red +done +echo -en "\033[0m" ## reset color \ No newline at end of file diff --git a/scripts/daily.sh b/scripts/daily.sh new file mode 100755 index 0000000..c2497d8 --- /dev/null +++ b/scripts/daily.sh @@ -0,0 +1 @@ +notify-send "Daily Fortune" "$(fortune|cowsay)" diff --git a/scripts/edu.sh b/scripts/edu.sh new file mode 100755 index 0000000..da26a49 --- /dev/null +++ b/scripts/edu.sh @@ -0,0 +1,4 @@ +firefox "https://us02web.zoom.us/j/3320211101" & +telegram-desktop & +zoom & +ripcord & \ No newline at end of file diff --git a/scripts/funnymic.sh b/scripts/funnymic.sh new file mode 100755 index 0000000..4d17908 --- /dev/null +++ b/scripts/funnymic.sh @@ -0,0 +1 @@ +pactl set-source-volume alsa_input.pci-0000_04_00.6.analog-stereo 400% \ No newline at end of file diff --git a/scripts/naruto.sh b/scripts/naruto.sh new file mode 100755 index 0000000..7f33ebf --- /dev/null +++ b/scripts/naruto.sh @@ -0,0 +1 @@ +st mpv /mnt/rec/Media/Naruto\ Music\ Collection\ \(FLAC\)/Naruto/NARUTO\ Original\ Soundtrack/07\ -\ Renewed\ Will\ to\ Fight.flac \ No newline at end of file diff --git a/scripts/normalmic.sh b/scripts/normalmic.sh new file mode 100755 index 0000000..c45b833 --- /dev/null +++ b/scripts/normalmic.sh @@ -0,0 +1 @@ +pactl set-source-volume alsa_input.pci-0000_04_00.6.analog-stereo 20% diff --git a/scripts/status/brightness.sh b/scripts/status/brightness.sh new file mode 100755 index 0000000..8249067 --- /dev/null +++ b/scripts/status/brightness.sh @@ -0,0 +1 @@ +echo "$(brightnessctl g)/$(brightnessctl m)*100" | bc -l | awk '{printf("%d\n",$1 + 0.5)}' \ No newline at end of file diff --git a/scripts/xinit.sh b/scripts/xinit.sh index a28ec73..9a1b7df 100755 --- a/scripts/xinit.sh +++ b/scripts/xinit.sh @@ -2,4 +2,5 @@ setxkbmap -layout us,ru -option grp:alt_shift_toggle & xrdb ~/.Xresources & feh --bg-scale ~/Documents/Pictures/wall.png & picom & -pulseaudio --no-cpu-limit --high-priority --realtime & +pulseaudio -D & +xautolock -time 5 -locker slock & diff --git a/vim.png b/vim.png index d72c697..44e37a1 100644 Binary files a/vim.png and b/vim.png differ diff --git a/wall.kra b/wall.kra old mode 100644 new mode 100755 diff --git a/wall.png b/wall.png old mode 100644 new mode 100755