updated dotfiles
This commit is contained in:
parent
51f4ef09e5
commit
a990f86247
@ -1,5 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
if test -z "$1"; then
|
if test -z "$1"; then
|
||||||
printf "Usage: %s machine\n" "$0" 1>&2
|
printf "Usage: %s machine\n" "$0" 1>&2
|
||||||
exit 64 # sysexits.h(3) EX_USAGE
|
exit 64 # sysexits.h(3) EX_USAGE
|
||||||
@ -22,6 +24,5 @@ do
|
|||||||
ln -sf "$PWD/$item" "$XDG_CONFIG_HOME/$inst_path"
|
ln -sf "$PWD/$item" "$XDG_CONFIG_HOME/$inst_path"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
ln -sf "$PWD/$MACHINE/zshrc" "$HOME/.zshrc"
|
||||||
ln -sf "$PWD/$MACHINE/profile" "$HOME/.profile"
|
ln -sf "$PWD/$MACHINE/profile" "$HOME/.profile"
|
||||||
|
|
||||||
printf "%s: Please set \$ZDOTDIR to \$XDG_CONFIG_HOME/zsh\n" "$0" 1>&2
|
|
||||||
|
1
noire-carnation/config/nvim/.gitignore
vendored
Normal file
1
noire-carnation/config/nvim/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
plugged/
|
@ -81,14 +81,16 @@ mode "screenshot" {
|
|||||||
bindsym Escape mode "default"; exec swayflashy
|
bindsym Escape mode "default"; exec swayflashy
|
||||||
}
|
}
|
||||||
|
|
||||||
#bindsym $mod+i mode "j: japanese; t: toki pona; esc: english"
|
bindsym $mod+i mode "language"
|
||||||
#
|
|
||||||
#mode "j: japanese; t: toki pona; esc: english" {
|
# language selection mode
|
||||||
# bindsym j exec ibus engine anthy; mode "default"
|
|
||||||
# bindsym t exec ibus engine table:tokipona; mode "default"
|
mode "language" {
|
||||||
# bindsym Return exec ibus engine xkb:us::eng; mode "default"
|
bindsym t exec ibus engine table:tokipona; mode "default"
|
||||||
# bindsym Escape exec ibus engine xkb:us::eng; mode "default"
|
bindsym e exec ibus engine xkb:us::eng; mode "default"
|
||||||
#}
|
bindsym Return exec ibus engine xkb:us::eng; mode "default"
|
||||||
|
bindsym Escape mode "default"
|
||||||
|
}
|
||||||
|
|
||||||
# window actions
|
# window actions
|
||||||
|
|
||||||
@ -195,7 +197,9 @@ exec keepassxc
|
|||||||
exec syncthing
|
exec syncthing
|
||||||
exec sleep 120 && noisetorch -i
|
exec sleep 120 && noisetorch -i
|
||||||
exec discord
|
exec discord
|
||||||
|
exec ibus-daemon -rxR
|
||||||
|
|
||||||
# window rules
|
# window rules
|
||||||
for_window [app_id="org.kde.polkit-kde-authentication-agent-1"] floating enable
|
for_window [app_id="org.kde.polkit-kde-authentication-agent-1"] floating enable
|
||||||
for_window [app_id="org.freedesktop.impl.portal.desktop.kde"] floating enable
|
for_window [app_id="org.freedesktop.impl.portal.desktop.kde"] floating enable
|
||||||
|
for_window [title="meower"] floating enable; resize set 600 450;
|
||||||
|
50
noire-carnation/config/zathurarc
Normal file
50
noire-carnation/config/zathurarc
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# ISC License
|
||||||
|
#
|
||||||
|
# Copyright by maksim <maksim@wherelinux.xyz>
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
# purpose with or without fee is hereby granted, provided that the above
|
||||||
|
# copyright notice and this permission notice appear in all copies.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||||
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||||
|
# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||||
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||||
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||||
|
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
# Huge thanks to u/demusxd for making this config! (i just recolored everything to everforest :P)
|
||||||
|
|
||||||
|
set default-bg "#4b565c"
|
||||||
|
set default-fg "#d3c6aa"
|
||||||
|
|
||||||
|
set statusbar-fg "#d3c6aa"
|
||||||
|
set statusbar-bg "#2b3339"
|
||||||
|
|
||||||
|
set inputbar-bg "#2b3339"
|
||||||
|
set inputbar-fg "#d3c6aa"
|
||||||
|
|
||||||
|
set notification-bg "#2b3339"
|
||||||
|
set notification-fg "#d3c6aa"
|
||||||
|
|
||||||
|
set notification-error-bg "#2b3339"
|
||||||
|
set notification-error-fg "#d3c6aa"
|
||||||
|
|
||||||
|
set notification-warning-bg "#2b3339"
|
||||||
|
set notification-warning-fg "#d3c6aa"
|
||||||
|
|
||||||
|
set highlight-color "#4b565c"
|
||||||
|
set highlight-active-color "#e67e80"
|
||||||
|
|
||||||
|
set completion-bg "#2b3339"
|
||||||
|
set completion-fg "#d3c6aa"
|
||||||
|
|
||||||
|
set completion-highlight-fg "#4b565c"
|
||||||
|
set completion-highlight-bg "#2b3339"
|
||||||
|
|
||||||
|
set recolor-lightcolor "#2b3339"
|
||||||
|
set recolor-darkcolor "#d3c6aa"
|
||||||
|
|
||||||
|
set recolor "true"
|
||||||
|
set recolor-keephue "false"
|
@ -39,8 +39,9 @@ LIBVA_DRIVER_NAME=radeonsi; export LIBVA_DRIVER_NAME
|
|||||||
MOZ_ENABLE_WAYLAND=1; export MOZ_ENABLE_WAYLAND
|
MOZ_ENABLE_WAYLAND=1; export MOZ_ENABLE_WAYLAND
|
||||||
QT_QPA_PLATFORM=wayland; export QT_QPA_PLATFORM
|
QT_QPA_PLATFORM=wayland; export QT_QPA_PLATFORM
|
||||||
QT_QPA_PLATFORMTHEME=qt5ct; export QT_QPA_PLATFORMTHEME
|
QT_QPA_PLATFORMTHEME=qt5ct; export QT_QPA_PLATFORMTHEME
|
||||||
GTK_IM_MODULE=ibus
|
GTK_IM_MODULE=ibus; export GTK_IM_MODULE
|
||||||
QT_IM_MODULE=ibus
|
QT_IM_MODULE=ibus; export QT_IM_MODULE
|
||||||
|
XMODIFIERS=@im=ibus; export XMODIFIERS
|
||||||
|
|
||||||
# functions
|
# functions
|
||||||
bmv() {
|
bmv() {
|
||||||
@ -58,6 +59,14 @@ bmv() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ix() {
|
||||||
|
curl -F 'f:1=<-' ix.io
|
||||||
|
}
|
||||||
|
|
||||||
|
myip() {
|
||||||
|
curl icanhazip.com
|
||||||
|
}
|
||||||
|
|
||||||
paclean() {
|
paclean() {
|
||||||
for package in `pacman -Qtq`; do
|
for package in `pacman -Qtq`; do
|
||||||
pacman -Qi "$package"
|
pacman -Qi "$package"
|
||||||
@ -76,9 +85,6 @@ paclean() {
|
|||||||
su -c "pacman -Rns $packages"
|
su -c "pacman -Rns $packages"
|
||||||
}
|
}
|
||||||
|
|
||||||
myip() {
|
|
||||||
curl icanhazip.com
|
|
||||||
}
|
|
||||||
|
|
||||||
sc() {
|
sc() {
|
||||||
if test -z "$1"; then
|
if test -z "$1"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user