Compare commits

..

No commits in common. "26f256c5d23aa2916869468db7c601ec277108bc" and "a5cfb44c1c72b6cbf7b88fe6ebb25b43feb94160" have entirely different histories.

7 changed files with 14 additions and 67 deletions

View File

@ -22,22 +22,6 @@
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [
".ccls",
"compile_commands.json",
".vim/",
".git/",
".hg/"
],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
}
}
}
},
"solargraph.commandPath": "~/.gem/ruby/2.6.0/bin/solargraph",

View File

@ -75,9 +75,6 @@ call plug#begin('~/.config/nvim/plugged')
" coc-diagnostic
Plug 'iamcco/coc-diagnostic'
" coc-cpp coc-c
" emerge dev-util/ccls
" Enable gentoo-syntax in vim
Plug 'gentoo/gentoo-syntax'
Plug 'tpope/vim-commentary'

View File

@ -1,23 +0,0 @@
#!/bin/bash
NUMBER="-1"
while true
do
clear
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") $(sudo find /var/tmpnotmpfs/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
LEN=${#LOGS[@]}
for (( i=0; i<$LEN; i++ ));
do
echo "$(( $i + 1 )) - ${LOGS[$i]}"
done
echo
read -rsp $'Select number to show logs...\n' -t2 -n1 NUMBER
[[ $NUMBER -gt 0 ]] && break
done
echo -e "\n\e[93m File: ${LOGS[$NUMBER-1]} \e[0m\n"
sudo cat ${LOGS[$NUMBER-1]}

View File

@ -1,23 +0,0 @@
#!/bin/bash
NUMBER="-1"
while true
do
clear
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") $(sudo find /var/tmpnotmpfs/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
LEN=${#LOGS[@]}
for (( i=0; i<$LEN; i++ ));
do
echo "$(( $i + 1 )) - ${LOGS[$i]}"
done
echo
read -rsp $'Select number to show logs...\n' -t2 -n1 NUMBER
[[ $NUMBER -gt 0 ]] && break
done
echo -e "\n\e[93m File: ${LOGS[$NUMBER-1]} \e[0m\n"
sudo tail -f ${LOGS[$NUMBER-1]}

1
.local/bin/Logs Symbolic link
View File

@ -0,0 +1 @@
emerge-logs

13
.local/bin/emerge-logs Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") $(sudo find /var/tmpnotmpfs/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
LEN=${#LOGS[@]}
for (( i=0; i<$LEN; i++ ));
do
echo "$(( $i + 1 )) - ${LOGS[$i]}"
done
echo
read -p 'Select number to show logs: ' NUMBER
sudo tail -f ${LOGS[$NUMBER-1]}

View File

@ -24,7 +24,6 @@ QT_SCALE_FACTOR=1.5 keepassxc &
sudo /usr/bin/rdate -s ntp.task.gda.pl && sudo /sbin/hwclock --systohc
megasync &
ibus-daemon&
quasselclient&
# Two monitors are enabled?
if [[ $(mons | awk '/Monitors/{print $2}') = 2 ]]

1
.zshrc
View File

@ -107,5 +107,4 @@ alias aria2c="aria2c --seed-time=0 --disable-ipv6 --max-upload-limit=1k"
# Cleaning-up
export PATH=$HOME/.local/bin:$PATH
[ -d $HOME/fortigate/bin ] && export PATH=$HOME/fortigate/bin:$PATH
export HISTTIMEFORMAT="%F %T "