Disorganized changes from past weeks
This commit is contained in:
parent
1091129506
commit
5411d397cf
16 changed files with 235 additions and 30 deletions
1
slackware/.Xresources
Symbolic link
1
slackware/.Xresources
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
home/x/.Xresources
|
||||
1
slackware/.inputrc
Symbolic link
1
slackware/.inputrc
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
home/x/.inputrc
|
||||
1
slackware/.xinitrc
Symbolic link
1
slackware/.xinitrc
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
home/x/.xinitrc
|
||||
7
slackware/etc/X11/xorg.conf.d/10-synaptics.conf
Normal file
7
slackware/etc/X11/xorg.conf.d/10-synaptics.conf
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Section "InputClass"
|
||||
Identifier "touchpad catchall"
|
||||
Driver "synaptics"
|
||||
MatchIsTouchpad "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Option "MaxTapTime" "0"
|
||||
EndSection
|
||||
12
slackware/home/bin/scripts/catloop
Executable file
12
slackware/home/bin/scripts/catloop
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/fish
|
||||
|
||||
while true
|
||||
catgirl \
|
||||
-h dump.town \
|
||||
-t client.pem \
|
||||
-u "bl0rt/"$argv \
|
||||
-w (pass znc) \
|
||||
-H 8,15 \
|
||||
-N notify-send \
|
||||
-s $argv
|
||||
end
|
||||
1
slackware/home/catgirl/.config/catgirl/GroffGrumble
Normal file
1
slackware/home/catgirl/.config/catgirl/GroffGrumble
Normal file
|
|
@ -0,0 +1 @@
|
|||
:q
|
||||
4
slackware/home/catgirl/.config/catgirl/tilde
Normal file
4
slackware/home/catgirl/.config/catgirl/tilde
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
host = dump.town
|
||||
trust = client.pem
|
||||
user = blort/tilde
|
||||
hash = 0,15
|
||||
|
|
@ -3,23 +3,24 @@
|
|||
[global]
|
||||
### Display ###
|
||||
# start flavours
|
||||
[global]
|
||||
frame_color = "#C0C5CE"
|
||||
separator_color = "#C0C5CE"
|
||||
|
||||
[urgency_low]
|
||||
background = "#99C794"
|
||||
foreground = "#D8DEE9"
|
||||
timeout = 10
|
||||
[base16_low]
|
||||
msg_urgency = low
|
||||
background = "#343D46"
|
||||
foreground = "#65737E"
|
||||
|
||||
[urgency_normal]
|
||||
[base16_normal]
|
||||
msg_urgency = normal
|
||||
background = "#4F5B66"
|
||||
foreground = "#C0C5CE"
|
||||
timeout = 10
|
||||
|
||||
[urgency_critical]
|
||||
background = "#F99157"
|
||||
foreground = "#65737E"
|
||||
timeout = 0
|
||||
[base16_critical]
|
||||
msg_urgency = critical
|
||||
background = "#EC5f67"
|
||||
foreground = "#CDD3DE"
|
||||
# end flavours
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR --export SBCL_HOME:/usr/lib64/sbcl
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR _fish_abbr_mux:tmuxinator
|
||||
SETUVAR _fisher_jorgebucaran_2F_fisher_files:/Users/iankeane/\x2econfig/fish/functions/fisher\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/fisher\x2efish
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
function vim --wraps=nvim --description 'alias vim nvim'
|
||||
nvim $argv;
|
||||
end
|
||||
|
|
@ -1,17 +1,18 @@
|
|||
frame_color = "#{{base01-hex}}"
|
||||
[global]
|
||||
frame_color = "#{{base05-hex}}"
|
||||
separator_color = "#{{base05-hex}}"
|
||||
|
||||
[urgency_low]
|
||||
background = "#{{base14-hex}}"
|
||||
foreground = "#{{base07-hex}}"
|
||||
timeout = 10
|
||||
[base16_low]
|
||||
msg_urgency = low
|
||||
background = "#{{base01-hex}}"
|
||||
foreground = "#{{base03-hex}}"
|
||||
|
||||
[urgency_normal]
|
||||
[base16_normal]
|
||||
msg_urgency = normal
|
||||
background = "#{{base02-hex}}"
|
||||
foreground = "#{{base05-hex}}"
|
||||
timeout = 10
|
||||
|
||||
[urgency_critical]
|
||||
background = "#{{base09-hex}}"
|
||||
foreground = "#{{base03-hex}}"
|
||||
timeout = 0
|
||||
[base16_critical]
|
||||
msg_urgency = critical
|
||||
background = "#{{base08-hex}}"
|
||||
foreground = "#{{base06-hex}}"
|
||||
|
|
|
|||
|
|
@ -2,24 +2,22 @@
|
|||
|
||||
|
||||
while true
|
||||
set batt_str (battery)
|
||||
set batt_str (acpi | cut -d ':' -f2 | cut -d ',' -f1 | tr -d ' ')
|
||||
set batt_emoji = ""
|
||||
|
||||
switch $batt_str
|
||||
case "Full*"
|
||||
set batt_emoji "✔️"
|
||||
set batt (battery | cut -d ' ' -f2)%
|
||||
case 'Discharging*'
|
||||
set batt_emoji "🔋"
|
||||
set batt (battery | cut -d ' ' -f2)%
|
||||
case 'Not*'
|
||||
set batt_emoji "X"
|
||||
set batt (battery | cut -d ' ' -f3)%
|
||||
case 'Charging*'
|
||||
set batt_emoji "⚡"
|
||||
set batt (battery | cut -d ' ' -f2)%
|
||||
end
|
||||
|
||||
set batt (acpi | cut -d ':' -f2 | cut -d ',' -f2 | tr -d ' ')
|
||||
|
||||
echo -e "%{c}$(now) %{r}$(sugar --lb) $batt_emoji $batt "
|
||||
sleep 1
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,10 +1,14 @@
|
|||
set-option -g default-shell /usr/local/bin/fish
|
||||
set-option -g default-shell /usr/bin/fish
|
||||
set -g default-terminal "screen-256color"
|
||||
# # set-window-option -g mode-keys vi
|
||||
|
||||
# set-window-option -g automatic-rename on
|
||||
set-window-option -g mode-keys vi
|
||||
|
||||
# Blank space between status and bottom of window
|
||||
set -Fg 'status-format[1]' '#{status-format[0]}'
|
||||
set -g 'status-format[0]' '#[bg=black] '
|
||||
set -g status 2
|
||||
|
||||
# bind h split-window -h -c "#{pane_current_path}"
|
||||
# bind v split-window -v -c "#{pane_current_path}"
|
||||
|
|
|
|||
19
slackware/home/tmuxinator/.config/tmuxinator/irc.yml
Normal file
19
slackware/home/tmuxinator/.config/tmuxinator/irc.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: irc
|
||||
root: ~/
|
||||
|
||||
windows:
|
||||
- libera:
|
||||
panes:
|
||||
- catloop libera
|
||||
- rizon:
|
||||
panes:
|
||||
- catloop rizon
|
||||
- tilde:
|
||||
panes:
|
||||
- catloop tilde
|
||||
- sn:
|
||||
panes:
|
||||
- catloop snoonet
|
||||
- hack:
|
||||
panes:
|
||||
- catloop hackint
|
||||
Loading…
Add table
Add a link
Reference in a new issue