This commit is contained in:
Debucquoy Anthony 2023-04-18 10:01:48 +02:00
parent 8b20dece31
commit cdbe23d2fd
Signed by: tonitch
GPG Key ID: A78D6421F083D42E
5 changed files with 181 additions and 0 deletions

105
.Xresources Normal file
View File

@ -0,0 +1,105 @@
! Base16 Eighties
! Scheme: Chris Kempson (http://chriskempson.com)
Xcursor.theme: cursor-theme
*foreground: #d3d0c8
#ifdef background_opacity
*background: [background_opacity]#2d2d2d
#else
*background: #2d2d2d
#endif
*cursorColor: #d3d0c8
*color0: #2d2d2d
*color1: #f2777a
*color2: #99cc99
*color3: #ffcc66
*color4: #6699cc
*color5: #cc99cc
*color6: #66cccc
*color7: #d3d0c8
*color8: #747369
*color9: #f2777a
*color10: #99cc99
*color11: #ffcc66
*color12: #6699cc
*color13: #cc99cc
*color14: #66cccc
*color15: #f2f0ec
! Note: colors beyond 15 might not be loaded (e.g., xterm, urxvt),
! use 'shell' template to set these if necessary
*color16: #f99157
*color17: #d27b53
*color18: #393939
*color19: #515151
*color20: #a09f93
*color21: #e8e6df
! URxvt.font: 9x15,xft:TerminessTTFNerdFontMono
! alternative font settings with 'terminus':
URxvt.font: -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1
!URxvt.bold.font: -xos4-terminus-bold-r-normal--16-160-72-72-c-80-iso10646-1
URxvt*scrollBar: false
URxvt*mouseWheelScrollPage: false
URxvt*cursorBlink: true
URxvt*saveLines: 5000
! for 'fake' transparency (without Compton) uncomment the following three lines
! URxvt*inheritPixmap: true
! URxvt*transparent: true
! URxvt*shading: 137
! other possible settings:
URxvt.iso14755: false
!URxvt.perl-ext:
!URxvt.perl-ext-common:
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
!! Cursor word movement
URxvt*altSendsEscape: true
URxvt.keysym.Control-Left: \033[1;5D
URxvt.keysym.Shift-Control-Left: \033[1;6D
URxvt.keysym.Control-Right: \033[1;5C
URxvt.keysym.Shift-Control-Right: \033[1;6C
URxvt.keysym.Control-Up: \033[1;5A
URxvt.keysym.Shift-Control-Up: \033[1;6A
URxvt.keysym.Control-Down: \033[1;5B
URxvt.keysym.Shift-Control-Down: \033[1;6B
URxvt.clipboard.autocopy: true
! URxvt.keysym.M-C-v: perl:clipboard:paste_escaped
! URxvt*termName: string
! URxvt*geometry: geometry
! URxvt*chdir: string
! URxvt*reverseVideo: boolean
! URxvt*loginShell: boolean
! URxvt*multiClickTime: number
! URxvt*jumpScroll: boolean
! URxvt*skipScroll: boolean
! URxvt*pastableTabs: boolean
! URxvt*scrollstyle: plain
! URxvt*scrollBar_right: boolean
! URxvt*scrollBar_floating: true
! URxvt*scrollBar_align: mode
! URxvt*thickness: number
! URxvt*scrollTtyOutput: boolean
! URxvt*scrollTtyKeypress: boolean
! URxvt*scrollWithBuffer: boolean
! URxvt*tintColor: !7DA55
! URxvt*blurRadius: HxV
! URxvt*fading: number
! URxvt*fadeColor: color
! URxvt*utmpInhibit: boolean
! URxvt*urgentOnBell: boolean
! URxvt*visualBell: boolean
! URxvt*mapAlert: boolean
! URxvt*meta8: boolean
! URxvt*tripleclickwords: boolean
! URxvt*insecure: boolean
! URxvt*cursorUnderline: boolean
! URxvt*pointerBlank: boolean

13
.dmenurc Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# ~/.dmenurc
#DMENU_FN="Terminus-15"
DMENU_FN="consolas-14"
#DMENU_FN="TerminessTTF Nerd Font-15" -fn $DMENU_FN
DMENU_NB="#2f343f"
DMENU_NF="#1ABB9B"
DMENU_SB="#1ABB9B"
DMENU_SF="#2f343f"
TERMINAL_CMD="st"
PANEL_HEIGHT="25"
DMENU_OPTIONS="-nb $DMENU_NB -nf $DMENU_NF -sf $DMENU_SF -sb $DMENU_SB"
export DMENU_FN DMENU_NB DMENU_NF DMENU_SF DMENU_SB DMENU_OPTIONS PANEL_HEIGHT

4
.fehbg Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
wallpaper=$(find $HOME/Pictures/wallpaper -type f | awk '!/.git/' | shuf -n 1)
echo $wallpaper > /tmp/currwallpaper.txt
feh --no-fehbg --bg-fill "$wallpaper"

36
.ideavimrc Normal file
View File

@ -0,0 +1,36 @@
"" Source your .vimrc
source ~/.vimrc
"" -- Suggested options --
" Show a few lines of context around the cursor. Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
set scrolloff=5
" Do incremental searching.
set incsearch
set clipboard^=unnamed
" Don't use Ex mode, use Q for formatting.
map Q gq
map gcc <Action>(CommentByLineComment)
map K <Action>(QuickJavaDoc)
map <space> <Action>(ExpandCollapseToggleAction)
command Break <Action>(ToggleLineBreakpoint)
"" -- Map IDE actions to IdeaVim -- https://jb.gg/abva4t
"" Map \r to the Reformat Code action
"map \r <Action>(ReformatCode)
"" Map <leader>d to start debug
"map <leader>d <Action>(Debug)
"" Map \b to toggle the breakpoint on the current line
"map \b <Action>(ToggleLineBreakpoint)
" Find more examples here: https://jb.gg/share-ideavimrc

23
.xprofile Normal file
View File

@ -0,0 +1,23 @@
#!/bin/sh
$HOME/.fehbg &
setxkbmap fr &
numlockx &
picom &
birdtray &
caprine &
xset +fp /usr/share/fonts &
xset +fp ~/.font &
xset fp rehash &
fc-cache -fv &
xset s off &
xset s noblank &
xset noexpose &
xset c on &
xset -dpms &
xset s 0 0 &
notify-send "Bienvenue ´whoami´!" &