add and move stuff

This commit is contained in:
2024-04-20 20:11:17 +02:00
parent d33f7da9df
commit 010cf75ce4
78 changed files with 7991 additions and 0 deletions

67
old/home/Xdefaults Normal file
View File

@@ -0,0 +1,67 @@
URxvt.font: xft:RobotoMono Nerd Font:size=15
! URxvt.font: xft:FiraCode Nerd Font:style=Medium:size=15,xft:Noto Color Emoji:size=20
URxvt.boldFont: xft:RobotoMono Nerd Font:size=15
! URxvt.boldFont: xft:FiraCode Nerd Font:bold:size=15
URxvt.letterSpace: 0
URxvt.scrollBar: false
*.background: #282a36
*.foreground: #eff0eb
! original #86a2b0
*.colorUL: #eff0eb
*.underlineColor: #eff0eb
! black
*.color0 : #2E3436
*.color8 : #686868
! red strings values
*.color1 : #ff5c57
! light red
*.color9 : #ff5c57
! green
*.color2 : #5af78e
! light green
*.color10 : #5af78e
! orange language reserved words
*.color3 : #f3f99d
! yellow types
*.color11 : #f3f99d
! blue
*.color4 : #57c7ff
! light blue comments
*.color12 : #57c7ff
! magenta includes
*.color5 : #ff6ac1
! light magenta
*.color13 : #ff6ac1
! cyan
*.color6 : #9aedfe
! light cyan
*.color14 : #9aedfe
! grey
*.color7 : #f1f1f0
! light grey
*.color15 : #eff0eb
URxvt.transparent: true
URxvt.shading: 30
URxvt.perl-ext-common: default,matcher,resize-font,selection-to-clipboard
URxvt.url-launcher: /usr/bin/xdg-open
URxvt.matcher.button: 1
URxvt.matcher.rend.0: Uline Bold fg5
URxvt.iso14755: true
URxvt.iso14755_52: false
URxvt.fading: 20

4
old/home/inputrc Normal file
View File

@@ -0,0 +1,4 @@
set vi-ins-mode-string \1\e[6 q\2
set vi-cmd-mode-string \1\e[2 q\2

94
old/home/xbindkeysrc Normal file
View File

@@ -0,0 +1,94 @@
###########################
# xbindkeys configuration #
###########################
#
# Version: 0.1.3
#
# If you edit this, do not forget to uncomment any lines that you change.
# The pound(#) symbol may be used anywhere for comments.
#
# A list of keys is in /usr/include/X11/keysym.h and in
# /usr/include/X11/keysymdef.h
# The XK_ is not needed.
#
# List of modifier (on my keyboard):
# Control, Shift, Mod1 (Alt), Mod2 (NumLock),
# Mod3 (CapsLock), Mod4, Mod5 (Scroll).
#
# Another way to specifie a key is to use 'xev' and set the
# keycode with c:nnn or the modifier with m:nnn where nnn is
# the keycode or the state returned by xev
#
# This file is created by xbindkey_config
# The structure is :
# # Remark
# "command"
# m:xxx + c:xxx
# Shift+...
#keystate_numlock = enable
#keystate_scrolllock = enable
#keystate_capslock = enable
#Print Screen
"screengrab --fullscreen"
m:0x0 + c:107
Print
#Alt + F4
"feh --fullscreen ~/.config/i3/imgs/nope.jpg"
m:0x8 + c:70
Alt + F4
#Volume Up
"pactl set-sink-volume 0 +5%"
m:0x0 + c:123
XF86AudioRaiseVolume
#Volume Down
"pactl set-sink-volume 0 -5%"
m:0x0 + c:122
XF86AudioLowerVolume
#Mute
"pactl set-sink-mute 0 toggle"
m:0x0 + c:121
XF86AudioMute
#Increase Brightness
"light -A 4"
m:0x0 + c:233
XF86MonBrightnessUp
#Decrease Brightness
"light -U 4"
m:0x0 + c:232
XF86MonBrightnessDown
#Toggle Mic
"pactl set-source-mute 1 toggle"
m:0x0 + c:198
XF86AudioMicMute
#Play Pause
"playerctl play-pause"
m:0x4 + c:67
Control + F1
#Next
"playerctl next"
m:0x4 + c:69
Control + F3
#Previous
"playerctl previous"
m:0x4 + c:68
Control + F2
#
# End of xbindkeys configuration

44
old/home/xinitrc Normal file
View File

@@ -0,0 +1,44 @@
#!/bin/sh
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
xbindkeys
setxkbmap ch
export TERMCMD=urxvt
wal -i /home/studi/Pictures/Wallpapers
exec i3