Compare commits
No commits in common. "26f256c5d23aa2916869468db7c601ec277108bc" and "a5cfb44c1c72b6cbf7b88fe6ebb25b43feb94160" have entirely different histories.
26f256c5d2
...
a5cfb44c1c
@ -22,22 +22,6 @@
|
|||||||
"args": ["start"],
|
"args": ["start"],
|
||||||
"filetypes": ["sh"],
|
"filetypes": ["sh"],
|
||||||
"ignoredRootPaths": ["~"]
|
"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",
|
"solargraph.commandPath": "~/.gem/ruby/2.6.0/bin/solargraph",
|
||||||
|
@ -75,9 +75,6 @@ call plug#begin('~/.config/nvim/plugged')
|
|||||||
" coc-diagnostic
|
" coc-diagnostic
|
||||||
Plug 'iamcco/coc-diagnostic'
|
Plug 'iamcco/coc-diagnostic'
|
||||||
|
|
||||||
" coc-cpp coc-c
|
|
||||||
" emerge dev-util/ccls
|
|
||||||
|
|
||||||
" Enable gentoo-syntax in vim
|
" Enable gentoo-syntax in vim
|
||||||
Plug 'gentoo/gentoo-syntax'
|
Plug 'gentoo/gentoo-syntax'
|
||||||
Plug 'tpope/vim-commentary'
|
Plug 'tpope/vim-commentary'
|
||||||
|
@ -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]}
|
|
@ -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
1
.local/bin/Logs
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
emerge-logs
|
13
.local/bin/emerge-logs
Executable file
13
.local/bin/emerge-logs
Executable 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]}
|
1
.xinitrc
1
.xinitrc
@ -24,7 +24,6 @@ QT_SCALE_FACTOR=1.5 keepassxc &
|
|||||||
sudo /usr/bin/rdate -s ntp.task.gda.pl && sudo /sbin/hwclock --systohc
|
sudo /usr/bin/rdate -s ntp.task.gda.pl && sudo /sbin/hwclock --systohc
|
||||||
megasync &
|
megasync &
|
||||||
ibus-daemon&
|
ibus-daemon&
|
||||||
quasselclient&
|
|
||||||
|
|
||||||
# Two monitors are enabled?
|
# Two monitors are enabled?
|
||||||
if [[ $(mons | awk '/Monitors/{print $2}') = 2 ]]
|
if [[ $(mons | awk '/Monitors/{print $2}') = 2 ]]
|
||||||
|
1
.zshrc
1
.zshrc
@ -107,5 +107,4 @@ alias aria2c="aria2c --seed-time=0 --disable-ipv6 --max-upload-limit=1k"
|
|||||||
|
|
||||||
# Cleaning-up
|
# Cleaning-up
|
||||||
export PATH=$HOME/.local/bin:$PATH
|
export PATH=$HOME/.local/bin:$PATH
|
||||||
[ -d $HOME/fortigate/bin ] && export PATH=$HOME/fortigate/bin:$PATH
|
|
||||||
export HISTTIMEFORMAT="%F %T "
|
export HISTTIMEFORMAT="%F %T "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user