i dont know what im doing
This commit is contained in:
parent
618012c1c2
commit
31572eac8d
34
.Xdefaults
34
.Xdefaults
@ -6,15 +6,41 @@ Xft.dpi: 120
|
||||
|
||||
XTerm*termName: xterm-256color
|
||||
XTerm*loginShell:true
|
||||
XTerm*faceName: Tamsyn:size=12
|
||||
XTerm*faceName: ttyp0:size=9
|
||||
XTerm*scrollBar: false
|
||||
XTerm*eightBitInput: false
|
||||
XTerm*locale: true
|
||||
XTerm*pointerMode: 2
|
||||
XTerm*internalBorder: 8
|
||||
XTerm*scaleHeight: 1.1
|
||||
XTerm*internalBorder: 16
|
||||
XTerm.vt100.translations: #override \
|
||||
Ctrl Shift <Key>V: insert-selection(CLIPBOARD) \n\
|
||||
Ctrl Shift <Key>C: copy-selection(CLIPBOARD)
|
||||
|
||||
*.foreground: #fff
|
||||
*.background: #000
|
||||
*.foreground: #e8e8d3
|
||||
*.background: #151515
|
||||
*.cursorColor: #cf6a4c
|
||||
|
||||
*.color0: #151515
|
||||
*.color8: #888888
|
||||
|
||||
*.color1: #cf6a4c
|
||||
*.color9: #cf6a4c
|
||||
|
||||
*.color2: #99ad6a
|
||||
*.color10: #99ad6a
|
||||
|
||||
*.color3: #ffb964
|
||||
*.color11: #ffb964
|
||||
|
||||
*.color4: #668799
|
||||
*.color12: #668799
|
||||
|
||||
*.color5: #c6b6ee
|
||||
*.color13: #c6b6ee
|
||||
|
||||
*.color6: #8fbfdc
|
||||
*.color14: #8fbfdc
|
||||
|
||||
*.color7: #888888
|
||||
*.color15: #e8e8d3
|
||||
|
13
.config/nvim/init.lua
Normal file
13
.config/nvim/init.lua
Normal file
@ -0,0 +1,13 @@
|
||||
vim.cmd.colo("jellybeans")
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.showmode = false
|
||||
vim.opt.laststatus = 0
|
||||
vim.opt.autoindent = true
|
||||
|
||||
require "nvim-treesitter.configs".setup {
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
set font "Tamsyn normal 12"
|
||||
set default-bg "#000000"
|
||||
set default-fg "#ffffff"
|
||||
set index-bg "#000000"
|
||||
set index-fg "#ffffff"
|
||||
set index-active-bg "#000000"
|
||||
set index-active-fg "#ffffff"
|
||||
set inputbar-bg "#000000"
|
||||
set inputbar-fg "#ffffff"
|
||||
set statusbar-bg "#000000"
|
||||
set statusbar-fg "#ffffff"
|
||||
set highlight-color "#000000"
|
||||
set highlight-active-color "#ffffff"
|
||||
set recolor-lightcolor "#000000"
|
||||
set recolor-darkcolor "#ffffff"
|
||||
set font "ttyp0 normal 9"
|
||||
set default-bg "#151515"
|
||||
set default-fg "#e8e8d3"
|
||||
set index-bg "#151515"
|
||||
set index-fg "#e8e8d3"
|
||||
set index-active-bg "#151515"
|
||||
set index-active-fg "#e8e8d3"
|
||||
set inputbar-bg "#151515"
|
||||
set inputbar-fg "#e8e8d3"
|
||||
set statusbar-bg "#151515"
|
||||
set statusbar-fg "#e8e8d3"
|
||||
set highlight-color "#151515"
|
||||
set highlight-active-color "#e8e8d3"
|
||||
set recolor-lightcolor "#151515"
|
||||
set recolor-darkcolor "#e8e8d3"
|
||||
|
||||
set adjust-open "best-fit"
|
||||
set pages-per-row 1
|
||||
|
20
.cwmrc
20
.cwmrc
@ -1,22 +1,24 @@
|
||||
ignore bar
|
||||
autogroup 0 bar
|
||||
sticky yes
|
||||
gap 26 0 0 0
|
||||
gap 20 0 0 0
|
||||
snapdist 10
|
||||
|
||||
borderwidth 6
|
||||
fontname "Tamsyn:size=12"
|
||||
color font "#fff"
|
||||
color selfont "#000"
|
||||
color menufg "#fff"
|
||||
color menubg "#000"
|
||||
color activeborder "#bbb"
|
||||
color inactivebborder "#222"
|
||||
fontname "ttyp0:size=9"
|
||||
color font "#e8e8d3"
|
||||
color selfont "#151515"
|
||||
color menufg "#e8e8d3"
|
||||
color menubg "#151515"
|
||||
color activeborder "#cf6a4c"
|
||||
#color activeborder "#e8e8d3"
|
||||
color inactiveborder "#888888"
|
||||
|
||||
unbind-key all
|
||||
|
||||
bind-key 4S-Return xterm
|
||||
bind-key 4S-b ungoogled-chromium
|
||||
bind-key 4S-b "firefox -P default-default"
|
||||
bind-key 4S-s "firefox -P school"
|
||||
bind-key 4S-t tor-browser
|
||||
|
||||
bind-key MS-q quit
|
||||
|
@ -5,3 +5,4 @@
|
||||
[user]
|
||||
name = Agnosto Dvonik
|
||||
email = dvonik@rslp.org
|
||||
signingkey = 231E067D4E995977D82EAAF02E71AADAE25FA0EE
|
||||
|
17
.profile
17
.profile
@ -2,15 +2,18 @@
|
||||
#
|
||||
# sh/ksh initialization
|
||||
|
||||
LANG="en_US.UTF-8"
|
||||
PATH=$HOME/.local/bin:$HOME/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin
|
||||
MYBIN="$HOME/.local/bin"
|
||||
EDITOR="nvim"
|
||||
HISTFILE="$HOME/.history"
|
||||
HISTSIZE=2048
|
||||
EDITOR="vi"
|
||||
HISTSIZE=64
|
||||
GOPATH="$HOME/.local/share/go"
|
||||
PS1="\W \033[1;34mλ\033[0m "
|
||||
PATH=$MYBIN:$HOME/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin
|
||||
export PATH HOME TERM MYBIN EDITOR HISTFILE HISTSIZE GOPATH PS1
|
||||
|
||||
export LANG PATH HISTFILE HISTSIZE EDITOR HOME TERM
|
||||
alias mkdir="mkdir -p"
|
||||
alias vi="nvim"
|
||||
|
||||
set -o vi
|
||||
alias mkdir="mkdir -p"
|
||||
|
||||
/usr/games/fortune
|
||||
cat Todo
|
||||
|
29
.xsession
29
.xsession
@ -1,22 +1,21 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
export LANG="en_US.UTF-8"
|
||||
export DBUS_SESSION_BUS_ADDRESS="no"
|
||||
export GTK_THEME="Adwaita:dark"
|
||||
export MOZ_ACCELERATED=1
|
||||
export MOZ_WEBRENDER=1
|
||||
export DBUS_SESSION_BUS_ADDRESS="no"
|
||||
export WALLPAPERS="$HOME/Pictures/Wallpapers"
|
||||
|
||||
walldir="$HOME/Pictures/Wallpapers"
|
||||
|
||||
xset b off
|
||||
# xrdb -merge "$HOME/.Xdefaults"
|
||||
sct 4250
|
||||
picom &
|
||||
|
||||
feh --no-fehbg --bg-fill "$walldir/city.png"
|
||||
|
||||
xrdb -merge "$HOME/.Xdefaults"
|
||||
xidle -program "/usr/local/bin/slock" -timeout 600 &
|
||||
|
||||
xset b 0 0 0
|
||||
picom -b
|
||||
hsetroot -cover "$WALLPAPERS/mount.png"
|
||||
"$HOME/.local/bin/bar" |\
|
||||
lemonbar-xft -f "Tamsyn:size=8:style=Bold" -F "#ffffff" -g x30 &
|
||||
|
||||
lemonbar-xft -B "#151515" -F "#e8e8d3" -f "ttyp0:size=9" -g x20 &
|
||||
sct 5000
|
||||
setxkbmap us altgr-intl
|
||||
cwm
|
||||
|
||||
pkill xidle
|
||||
pkill picom
|
||||
rm -rf "$HOME/TorBrowser-Data"
|
||||
|
2
README
2
README
@ -1,7 +1,7 @@
|
||||
dotfiles
|
||||
--------
|
||||
|
||||
- vi(1)
|
||||
- nvim(1)
|
||||
- zathura(1)
|
||||
- cwm(1)
|
||||
- git(1)
|
||||
|
@ -3,8 +3,8 @@
|
||||
Xft.dpi: 120
|
||||
|
||||
xlogin*borderWidth: 0
|
||||
xlogin.Login.height: 220
|
||||
xlogin.Login.width: 240
|
||||
xlogin.Login.height: 180
|
||||
xlogin.Login.width: 200
|
||||
xlogin.Login.y: 60
|
||||
xlogin.Login.x: 60
|
||||
xlogin.Login.frameWidth: 6
|
||||
@ -12,15 +12,15 @@ xlogin.Login.innerFramesWidth: 0
|
||||
xlogin.Login.sepWidthz: 0
|
||||
xlogin.Login.greeting: CLIENTHOST
|
||||
xlogin.Login.fail: wrong
|
||||
xlogin.Login.background: #000000
|
||||
xlogin.Login.foreground: #ffffff
|
||||
xlogin.Login.greetColor: #ffffff
|
||||
xlogin.Login.failColor: #ffffff
|
||||
xlogin.Login.inpColor: #000000
|
||||
xlogin.Login.promptColor: #ffffff
|
||||
xlogin.Login.hiColor: #bbbbbb
|
||||
xlogin.Login.shdColor: #bbbbbb
|
||||
xlogin.Login.greetFace: Tamsyn-12
|
||||
xlogin.Login.face: Tamsyn-12
|
||||
xlogin.Login.failFace: Tamsyn-12
|
||||
xlogin.Login.promptFace: Tamsyn-12
|
||||
xlogin.Login.background: #151515
|
||||
xlogin.Login.foreground: #e8e8d3
|
||||
xlogin.Login.greetColor: #e8e8d3
|
||||
xlogin.Login.failColor: #902020
|
||||
xlogin.Login.inpColor: #151515
|
||||
xlogin.Login.promptColor: #e8e8d3
|
||||
xlogin.Login.hiColor: #cf6a4c
|
||||
xlogin.Login.shdColor: #cf6a4c
|
||||
xlogin.Login.greetFace: ttyp0-9
|
||||
xlogin.Login.face: ttyp0-9
|
||||
xlogin.Login.failFace: ttyp0-9
|
||||
xlogin.Login.promptFace: ttyp0-9
|
||||
|
@ -5,7 +5,7 @@ prefix="/usr/X11R6"
|
||||
exec_prefix="${prefix}"
|
||||
|
||||
# ${exec_prefix}/bin/xsetroot -fg \#6f6f6f -bg \#bfbfbf -bitmap ${prefix}/include/X11/bitmaps/root_weave
|
||||
${exec_prefix}/bin/xsetroot -solid \#000000
|
||||
${exec_prefix}/bin/xsetroot -solid \#151515
|
||||
|
||||
# ${exec_prefix}/bin/xconsole -geometry 480x130-0-0 -daemon -notify -verbose -fn fixed -exitOnFail
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user