Compare commits
No commits in common. "f6acbd3cb710a1afd69c3e32d2f47d4ed1071a40" and "623828461e6a9ff21b2bf39088f42db6c46a0967" have entirely different histories.
f6acbd3cb7
...
623828461e
@ -15,7 +15,7 @@ case $MONITOR_CONFIGURATION in
|
||||
xrandr --output $(xrandr | grep ' connected' | awk '{print $1;}') --primary
|
||||
scwrypts desktop i3 set background -- $(scwrypts -n get theme).jpg
|
||||
$DOTWRYN/bin/polybar
|
||||
scwrypts desktop play sfx -- login
|
||||
scwrypts desktop play sound -- login
|
||||
return 0
|
||||
;;
|
||||
esac
|
@ -80,5 +80,5 @@ XRANDR_SET() {
|
||||
scwrypts desktop screen blank -- $SCREEN_BLANK
|
||||
scwrypts desktop i3 set background -- $BACKGROUND || scwrypts desktop i3 set background -- purple.jpg
|
||||
$DOTWRYN/bin/polybar
|
||||
scwrypts desktop play sfx -- $SOUND_EFFECT
|
||||
scwrypts desktop play sound -- $SOUND_EFFECT
|
||||
}
|
@ -4,7 +4,7 @@ tmux new -d -s apps -n 'foreman' 'htop' \; \
|
||||
split-window -d -t apps:foreman "clear; echo 'Keeping apps fresh...'; while true; do sleep 30; done" \
|
||||
2>/dev/null
|
||||
|
||||
for APP in $(find "${0:a:h}" -name apps.\*)
|
||||
for APP in $(ls ${0:a:h} | grep -v 'apps')
|
||||
do
|
||||
echo "looking for $APP"
|
||||
tmux list-windows -t apps: | awk '{print $2;}' | grep -q $APP \
|
@ -1,5 +1,5 @@
|
||||
#!/bin/zsh
|
||||
source "${HOME}/.config/wryn/env.zsh"
|
||||
source "$HOME/.config/wryn/env.zsh"
|
||||
NATIVE_MONITOR='eDP1'
|
||||
|
||||
GET_PRIMARY_MONITOR() {
|
||||
@ -15,7 +15,7 @@ GET_ALL_EXTERNAL_MONITORS() {
|
||||
xrandr \
|
||||
| grep ' connect' \
|
||||
| awk '{print $1;}' \
|
||||
| grep -v "${NATIVE_MONITOR}" \
|
||||
| grep -v "$NATIVE_MONITOR" \
|
||||
2>/dev/null
|
||||
}
|
||||
GET_DEFAULT_EXTERNAL_MONITOR() {
|
||||
@ -34,19 +34,19 @@ DISCONNECT_OTHER() {
|
||||
|
||||
for ACTIVE_MONITOR in ${@:2}
|
||||
do
|
||||
INACTIVE_MONITORS=$(echo ${INACTIVE_MONITORS} | grep -v "^${ACTIVE_MONITOR}$")
|
||||
INACTIVE_MONITORS=$(echo $INACTIVE_MONITORS | grep -v "^$ACTIVE_MONITOR$")
|
||||
done
|
||||
|
||||
local MONITOR
|
||||
for MONITOR in ${INACTIVE_MONITORS}
|
||||
for MONITOR in $INACTIVE_MONITORS
|
||||
do
|
||||
xrandr --output ${MONITOR} --off
|
||||
xrandr --output $MONITOR --off
|
||||
done
|
||||
|
||||
sleep 1
|
||||
${DOTWRYN}/bin/set-background random
|
||||
$DOTWRYN/bin/set-background random
|
||||
|
||||
[ ${SFX} ] && ( scwrypts play sfx -- ${SFX} ) &
|
||||
[ $SFX ] && ( $DOTWRYN/bin/play-sound $SFX ) &
|
||||
return 0
|
||||
}
|
||||
|
@ -1,34 +1,26 @@
|
||||
#!/bin/zsh
|
||||
|
||||
[ "${DOTWRYN}" ] || {
|
||||
notify-send 'I3 UTILS' 'cannot determine $DOTWRYN for utility execution'
|
||||
return 1
|
||||
}
|
||||
|
||||
command -v scwrypts &>/dev/null || {
|
||||
scwrypts() { "${DOTWRYN}/zsh/plugins/scwrypts/scwrypts" $@; }
|
||||
[ -f $HOME/.local/bin/scwrypts ] \
|
||||
&& scwrypts() { $HOME/.local/bin/scwrypts $@; } \
|
||||
|| scwrypts() { $HOME/.wryn/zsh/plugins/scwrypts/scwrypts $@; } \
|
||||
;
|
||||
}
|
||||
|
||||
export CI=true
|
||||
export DESKTOP__SFX_PATH="${HOME}/Media/sfx"
|
||||
export SCWRYPTS_LOG_LEVEL=0
|
||||
|
||||
#####################################################################
|
||||
|
||||
case $1 in
|
||||
( next | previous | play-pause ) playerctl $1 ;;
|
||||
( fastforward ) playerctl position 5+ ;;
|
||||
( rewind ) playerctl position 5- ;;
|
||||
|
||||
( volumedown ) scwrypts media pulseaudio volume -- sink down ;;
|
||||
( volumeup ) scwrypts media pulseaudio volume -- sink up ;;
|
||||
( volumemute ) scwrypts media pulseaudio volume -- sink mute ;;
|
||||
( micmute ) scwrypts media pulseaudio volume -- source mute ;;
|
||||
( volumedown ) scwrypts -n desktop pulseaudio -- sink down ;;
|
||||
( volumeup ) scwrypts -n desktop pulseaudio -- sink up ;;
|
||||
( volumemute ) scwrypts -n desktop pulseaudio -- sink mute ;;
|
||||
( micmute ) scwrypts -n desktop pulseaudio -- source mute ;;
|
||||
|
||||
( backlightup ) scwrypts desktop backlight -- up ;;
|
||||
( backlightdown ) scwrypts desktop backlight -- down ;;
|
||||
( backlightup ) scwrypts -n desktop backlight -- up ;;
|
||||
( backlightdown ) scwrypts -n desktop backlight -- down ;;
|
||||
|
||||
( lock ) scwrypts desktop lock i3 -- ;;
|
||||
( lock ) scwrypts -n desktop lock i3 -- ;;
|
||||
|
||||
( bgrandomize ) scwrypts desktop set i3 background -- random ;;
|
||||
|
@ -3,4 +3,3 @@
|
||||
xrandr --auto
|
||||
|
||||
scwrypts desktop i3 set background -- $(scwrypts -n get theme).jpg
|
||||
scwrypts desktop screen blank -- enable
|
@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env sh
|
||||
command -v /usr/bin/polybar || return 0
|
||||
command -v polybar || return 0
|
||||
|
||||
killall -q polybar
|
||||
|
||||
while pgrep -x polybar &>/dev/null; do sleep 0.1; done
|
||||
|
||||
/usr/bin/polybar i3 &
|
||||
polybar i3 &
|
@ -14,4 +14,4 @@ pkill compton
|
||||
|
||||
scwrypts desktop screen-blank -- disable
|
||||
scwrypts desktop i3 set background -- link-vs-gdizz.jpg
|
||||
scwrypts desktop play sfx -- gamedock
|
||||
scwrypts desktop play sound -- gamedock
|
@ -14,4 +14,4 @@ xrandr ${ARGS[@]} \
|
||||
|
||||
scwrypts desktop screen-blank -- enable
|
||||
scwrypts desktop i3 set background -- $(scwrypts -n get theme).jpg || scwrypts desktop i3 set background -- random
|
||||
scwrypts desktop play sfx -- gamedock
|
||||
scwrypts desktop play sound -- gamedock
|
28
colorschemes/active/alacritty.toml
Normal file
28
colorschemes/active/alacritty.toml
Normal file
@ -0,0 +1,28 @@
|
||||
# do not edit; generated by scwrypts
|
||||
# theme : halloween
|
||||
[colors.cursor]
|
||||
cursor = '0xefe5f9'
|
||||
|
||||
[colors.primary]
|
||||
background = '0x000505'
|
||||
foreground = '0xd0f0f0'
|
||||
|
||||
[colors.normal]
|
||||
black = '0x000505'
|
||||
red = '0x00f900'
|
||||
green = '0xff6f00'
|
||||
yellow = '0x8b41d5'
|
||||
blue = '0xac0041'
|
||||
magenta = '0x750dcc'
|
||||
cyan = '0x00f900'
|
||||
white = '0xd0f0f0'
|
||||
|
||||
[colors.bright]
|
||||
black = '0x424253'
|
||||
red = '0xa3ff90'
|
||||
green = '0xffe082'
|
||||
yellow = '0xbb94e6'
|
||||
blue = '0xff283e'
|
||||
magenta = '0xd6bff0'
|
||||
cyan = '0xcbffbe'
|
||||
white = '0x7e707e'
|
27
colorschemes/active/alacritty.yaml
Normal file
27
colorschemes/active/alacritty.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
--- # yamllint disable rule:colons
|
||||
# do not edit; generated by scwrypts
|
||||
# theme : halloween
|
||||
colors:
|
||||
primary:
|
||||
background: '0x000505'
|
||||
foreground: '0xd0f0f0'
|
||||
cursor:
|
||||
cursor: '0xefe5f9'
|
||||
normal:
|
||||
black: '0x000505'
|
||||
red: '0x00f900'
|
||||
green: '0xff6f00'
|
||||
yellow: '0x8b41d5'
|
||||
blue: '0xac0041'
|
||||
magenta: '0x750dcc'
|
||||
cyan: '0x00f900'
|
||||
white: '0xd0f0f0'
|
||||
bright:
|
||||
black: '0x424253'
|
||||
red: '0xa3ff90'
|
||||
green: '0xffe082'
|
||||
yellow: '0xbb94e6'
|
||||
blue: '0xff283e'
|
||||
magenta: '0xd6bff0'
|
||||
cyan: '0xcbffbe'
|
||||
white: '0x7e707e'
|
11
colorschemes/active/getty.sh
Normal file
11
colorschemes/active/getty.sh
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
# do not edit; generated by scwrypts
|
||||
# theme : halloween
|
||||
#
|
||||
# source this file to apply colorscheme to linux getty
|
||||
#
|
||||
[[ "$TERM" =~ ^linux$ ]] || return 0
|
||||
/bin/echo -e " ]P0000505 ]P100f900 ]P2ff6f00 ]P38b41d5 ]P4ac0041 ]P5750dcc ]P600f900 ]P7d0f0f0 ]P8a3ff90 ]P9ffe082 ]PAbb94e6 ]PBff283e ]PCd6bff0 ]PDcbffbe ]PEd0f0f0 ]PF7e707e "
|
||||
[ ! $NO_CLEAR ] && clear
|
||||
return 0
|
||||
sed $d
|
23
colorschemes/active/kitty.conf
Normal file
23
colorschemes/active/kitty.conf
Normal file
@ -0,0 +1,23 @@
|
||||
# do not edit; generated by scwrypts
|
||||
# theme : halloween
|
||||
color0 #000505
|
||||
color1 #00f900
|
||||
color2 #ff6f00
|
||||
color3 #8b41d5
|
||||
color4 #ac0041
|
||||
color5 #750dcc
|
||||
color6 #00f900
|
||||
color7 #d0f0f0
|
||||
color8 #424253
|
||||
color9 #a3ff90
|
||||
color10 #ffe082
|
||||
color11 #bb94e6
|
||||
color12 #ff283e
|
||||
color13 #d6bff0
|
||||
color14 #cbffbe
|
||||
color15 #7e707e
|
||||
cursor #efe5f9
|
||||
background #000505
|
||||
foreground #d0f0f0
|
||||
selection_background #
|
||||
selection_foreground #
|
1
colorschemes/active/name.txt
Normal file
1
colorschemes/active/name.txt
Normal file
@ -0,0 +1 @@
|
||||
halloween
|
@ -1,13 +1,13 @@
|
||||
# do not edit; generated by scwrypts
|
||||
# theme : main
|
||||
# theme : halloween
|
||||
[colors]
|
||||
background = #000505
|
||||
foreground = #d0f0f0
|
||||
background-alt = #6911aa
|
||||
background-alt = #8b41d5
|
||||
foreground-alt = #d0f0f0
|
||||
primary = #6911aa
|
||||
secondary = #11bb98
|
||||
alert = #c80064
|
||||
primary = #8b41d5
|
||||
secondary = #ff6f00
|
||||
alert = #00f900
|
||||
disabled = #424253
|
||||
|
||||
primary-gradient-0 = #420069
|
14
colorschemes/active/rofi.rasi
Normal file
14
colorschemes/active/rofi.rasi
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* do not edit; generated by scwrypts
|
||||
* theme : halloween
|
||||
**/
|
||||
|
||||
*{
|
||||
background: #ff6f00;
|
||||
foreground: #000505;
|
||||
background-alt: #a066dd;
|
||||
foreground-alt: #000505;
|
||||
selected: #000505;
|
||||
active: #8b41d5;
|
||||
urgent: #00f900;
|
||||
}
|
1
colorschemes/active/source.yaml
Symbolic link
1
colorschemes/active/source.yaml
Symbolic link
@ -0,0 +1 @@
|
||||
/home/w0ryn/.wryn/colorschemes/halloween.yaml
|
22
config/alacritty.yaml
Normal file
22
config/alacritty.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
--- # yamllint disable rule:colons
|
||||
# DEPRECATED; please refer to alacritty.toml
|
||||
import:
|
||||
- ~/.config/alacritty/theme.yml
|
||||
- ~/.config/alacritty/local.yml
|
||||
|
||||
window:
|
||||
opacity: 0.8
|
||||
|
||||
font:
|
||||
glyph_offset:
|
||||
x: 0
|
||||
y: 1
|
||||
|
||||
normal:
|
||||
family: Monaspace Neon
|
||||
|
||||
bold:
|
||||
family: Monaspace Argon
|
||||
|
||||
italic:
|
||||
family: Monaspace Radon
|
@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
command -v /usr/bin/rankmirrors &>/dev/null || {
|
||||
echo "missing 'rankmirrors'; trying to install..." >&2
|
||||
yay -S pacman-contrib
|
||||
}
|
||||
|
||||
command -v /usr/bin/rankmirrors &>/dev/null || {
|
||||
echo "cannot rank mirrors without 'rankmirrors' from pacman-contrib; aborting" >&2
|
||||
return 1
|
||||
}
|
||||
|
||||
|
||||
echo 'ranking mirrors; this may take a few minutes...' >&2
|
||||
{
|
||||
echo "# mirrors ranked on $(date)"
|
||||
curl -s 'https://archlinux.org/mirrorlist/?country=US&country=CA&protocol=https&use_mirror_status=on' \
|
||||
| sed 's/^#Server/Server/; /^#/d'
|
||||
} | /usr/bin/rankmirrors -n 7 - > "${HOME}/mirrorlist.ranked"
|
||||
|
||||
[ -f ~/mirrorlist.ranked ] || {
|
||||
echo 'failed to rank mirrors :c'
|
||||
return 1
|
||||
}
|
||||
|
||||
echo "
|
||||
finished ranking mirrors!
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" >&2
|
||||
diff --side-by-side --color /etc/pacman.d/mirrorlist "${HOME}/mirrorlist.ranked" >&2
|
||||
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
updated list is currently at ~/mirrorlist.ranked; please review the new list
|
||||
and backup existing list; once you're ready to save them, you can run:
|
||||
|
||||
" >&2
|
||||
|
||||
echo "sudo mv ~/mirrorlist.ranked /etc/pacman.d/mirrorlist && yay -Syyu"
|
Binary file not shown.
@ -1,11 +0,0 @@
|
||||
#!/bin/sh
|
||||
# do not edit; generated by scwrypts
|
||||
# theme : main
|
||||
#
|
||||
# source this file to apply colorscheme to linux getty
|
||||
#
|
||||
[[ "$TERM" =~ ^linux$ ]] || return 0
|
||||
/bin/echo -e " ]P0000505 ]P1c80064 ]P211bb98 ]P36911aa ]P42262bb ]P59922dd ]P622ccba ]P7d0f0f0 ]P8ff44ff ]P944dddd ]PAaa44ff ]PB229df6 ]PCdd88ff ]PD88ffff ]PEd0f0f0 ]PF7e707e "
|
||||
[ ! $NO_CLEAR ] && clear
|
||||
return 0
|
||||
sed $d
|
@ -1 +0,0 @@
|
||||
main
|
@ -1,14 +0,0 @@
|
||||
/**
|
||||
* do not edit; generated by scwrypts
|
||||
* theme : main
|
||||
**/
|
||||
|
||||
*{
|
||||
background: #001129;
|
||||
foreground: #d0f0f0;
|
||||
background-alt: #9922dd;
|
||||
foreground-alt: #000505;
|
||||
selected: #000505;
|
||||
active: #6911aa;
|
||||
urgent: #c80064;
|
||||
}
|
@ -1 +0,0 @@
|
||||
../main.yaml
|
@ -1 +0,0 @@
|
||||
/home/w0ryn/.local/share/wryn/colorschemes/main.yaml
|
@ -45,13 +45,6 @@
|
||||
|
||||
[gpg "ssh"]
|
||||
program = /opt/1Password/op-ssh-sign
|
||||
allowedSignersFile = /home/w0ryn/.ssh/allowed_signers
|
||||
|
||||
[commit]
|
||||
gpgsign = true
|
||||
|
||||
[tag]
|
||||
gpgsign = true
|
||||
|
||||
[format]
|
||||
signoff = true
|
@ -10,7 +10,7 @@ font pango:Monaspace Argon, pango:Noto Color Emoji, pango:Symbols Nerd Font 16
|
||||
## Custom Utility ##############################################################
|
||||
################################################################################
|
||||
|
||||
set $UTILS exec --no-startup-id $DOTWRYN/config/bin/i3-utils
|
||||
set $UTILS exec --no-startup-id /home/w0ryn/.config/i3/utils
|
||||
|
||||
# Audio
|
||||
bindsym XF86AudioRewind $UTILS previous
|
||||
|
@ -21,5 +21,5 @@ statusbar:
|
||||
# supported values are 'polybar' and 'i3status'
|
||||
type: polybar
|
||||
|
||||
# a list of i3config excerpts that should be appended to the generated config
|
||||
# a list of i3conifg excerpts that should be appended to the generated config
|
||||
i3configs: []
|
||||
|
@ -1,13 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
tmux new -d -s apps -n 'foreman' 'htop' \; \
|
||||
split-window -d -t apps:foreman "clear; echo 'Keeping apps fresh...'; while true; do sleep 30; done" \
|
||||
2>/dev/null
|
||||
|
||||
${XDG_DATA_HOME}/home/w0ryn/.local/share/project-source-code/yage/dotwryn/code/config/local/pikachu/bin
|
||||
for APP in $(find "${0:a:h}" -name apps.\*)
|
||||
do
|
||||
echo "looking for $APP"
|
||||
tmux list-windows -t apps: | awk '{print $2;}' | grep -q $APP \
|
||||
|| tmux new-window -dn $APP -t apps: "${0:a:h}/$APP"
|
||||
done
|
@ -1,13 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
cd ${XDG_DATA_HOME:-${HOME}/.local/share}/project-source-code/python/xorg-midi/code
|
||||
source ../env/bin/activate
|
||||
|
||||
while true
|
||||
do
|
||||
clear
|
||||
echo "activating midi controller"
|
||||
./midi-controller
|
||||
echo "midi controller died; waiting to reconnect"
|
||||
sleep 3
|
||||
done
|
@ -1,10 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
xrandr --auto
|
||||
|
||||
xrandr --output HDMI-1-0 --off
|
||||
sleep 1
|
||||
xrandr --output HDMI-1-0 --mode 2560x1440
|
||||
|
||||
scwrypts desktop i3 set background -- $(scwrypts -n get theme).jpg
|
||||
scwrypts desktop screen blank -- disable
|
@ -1,11 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
xrandr --auto
|
||||
|
||||
xrandr --output HDMI-1-0 --off
|
||||
sleep 1
|
||||
xrandr --output HDMI-1-0 --mode 1920x1080
|
||||
xrandr --output eDP-1 --off
|
||||
|
||||
scwrypts desktop i3 set background -- $(scwrypts -n get theme).jpg
|
||||
scwrypts desktop screen blank -- disable
|
@ -1 +0,0 @@
|
||||
/home/w0ryn/.local/share/wryn/zsh/plugins/scwrypts/scwrypts
|
@ -1,7 +0,0 @@
|
||||
#!/bin/zsh
|
||||
|
||||
xrandr --output HDMI-1-0 --off
|
||||
xrandr --output eDP-1 --mode 2560x1600
|
||||
|
||||
scwrypts desktop i3 set background -- $(scwrypts -n get theme).jpg
|
||||
scwrypts desktop screen blank -- disable
|
@ -1,40 +0,0 @@
|
||||
Section "Files"
|
||||
ModulePath "/usr/lib/nvidia"
|
||||
ModulePath "/usr/lib32/nvidia"
|
||||
ModulePath "/usr/lib32/nvidia/xorg/modules"
|
||||
ModulePath "/usr/lib32/xorg/modules"
|
||||
ModulePath "/usr/lib64/nvidia/xorg/modules"
|
||||
ModulePath "/usr/lib64/nvidia/xorg"
|
||||
ModulePath "/usr/lib64/xorg/modules"
|
||||
EndSection
|
||||
|
||||
Section "ServerLayout"
|
||||
Identifier "layout"
|
||||
Screen 0 "integrated"
|
||||
Inactive "nvidia"
|
||||
Option "AllowNVIDIAGPUScreens"
|
||||
EndSection
|
||||
|
||||
Section "Device"
|
||||
Identifier "integrated"
|
||||
Driver "modesetting"
|
||||
BusID "PCI:101:0:0"
|
||||
Option "DRI" "3"
|
||||
EndSection
|
||||
|
||||
Section "Screen"
|
||||
Identifier "integrated"
|
||||
Device "integrated"
|
||||
EndSection
|
||||
|
||||
Section "Device"
|
||||
Identifier "nvidia"
|
||||
Driver "nvidia"
|
||||
BusID "PCI:100:0:0"
|
||||
Option "Coolbits" "28"
|
||||
EndSection
|
||||
|
||||
Section "Screen"
|
||||
Identifier "nvidia"
|
||||
Device "nvidia"
|
||||
EndSection
|
@ -1 +0,0 @@
|
||||
ACTION=="add", RUN+="/home/w0ryn/.local/share/wryn/config/local/pikachu/bin/set-battery-max-charge"
|
@ -1,20 +0,0 @@
|
||||
--- a/analog-output-speaker.conf
|
||||
+++ b/analog-output-speaker.conf
|
||||
@@ -71,12 +71,14 @@
|
||||
|
||||
[Element Hardware Master]
|
||||
switch = mute
|
||||
-volume = merge
|
||||
-override-map.1 = all
|
||||
-override-map.2 = all-left,all-right
|
||||
+volume = ignore
|
||||
|
||||
[Element Master]
|
||||
switch = mute
|
||||
+volume = ignore
|
||||
+
|
||||
+[Element PCM]
|
||||
+switch = mute
|
||||
volume = merge
|
||||
override-map.1 = all
|
||||
override-map.2 = all-left,all-right
|
@ -1,2 +0,0 @@
|
||||
#!/bin/zsh
|
||||
sudo patch -p1 -d /usr/share/alsa-card-profile/mixer/paths/ -i "${0:a:h}/pulseaudio.patch"
|
@ -1,2 +0,0 @@
|
||||
[font]
|
||||
size = 9
|
@ -1,4 +1,4 @@
|
||||
include-file = $HOME/.config/polybar/theme.ini
|
||||
include-file = $DOTWRYN/colorschemes/active/polybar.ini
|
||||
include-file = $HOME/.config/polybar/local.ini
|
||||
|
||||
[settings]
|
@ -21,7 +21,7 @@ configuration {
|
||||
|
||||
/*****----- Global Properties -----*****/
|
||||
|
||||
@import "./colorschemes/active/rofi"
|
||||
@import "../colorschemes/active/rofi"
|
||||
|
||||
* {
|
||||
border-colour: var(selected);
|
||||
|
@ -3,14 +3,19 @@
|
||||
#
|
||||
|
||||
SCWRYPTS_SHORTCUT='' # CTRL + W
|
||||
SCWRYPTS_ENV_SHORTCUT='' # CTRL + /
|
||||
|
||||
#SCWRYPTS_ENVIRONMENT__SHOW_ENV_HELP=false
|
||||
#SCWRYPTS_ENVIRONMENT__PREFERRED_EDIT_MODE=quiet
|
||||
SCWRYPTS_ENVIRONMENT__SHOW_ENV_HELP=false
|
||||
SCWRYPTS_ENVIRONMENT__PREFERRED_EDIT_MODE=quiet
|
||||
|
||||
SCWRYPTS_GENERATOR__SHOW_HELP=false
|
||||
for SEARCH_DIR in \
|
||||
"$DOTWRYN/scwrypts" \
|
||||
"$HOME/Projects/yage/" \
|
||||
;
|
||||
do
|
||||
[ -d "$SEARCH_DIR" ] || continue
|
||||
for G in "$SEARCH_DIR/"**/*.scwrypts.zsh; do . "$G"; done
|
||||
done
|
||||
|
||||
[ ${DOTWRYN} ] || source "${HOME}/.zshrc"
|
||||
SCWRYPTS_GROUP_DIRS+=("${DOTWRYN}/scwrypts")
|
||||
|
||||
[ -f "${XDG_CONFIG_HOME:-${HOME}/.config}/scwrypts/config.local.zsh" ] \
|
||||
&& source "${XDG_CONFIG_HOME:-${HOME}/.config}/scwrypts/config.local.zsh"
|
||||
[ -f "$HOME/.config/scwrypts/config.local.zsh" ] \
|
||||
&& source "$HOME/.config/scwrypts/config.local.zsh"
|
||||
|
60
config/scwrypts/dotfiles.zsh
Normal file
60
config/scwrypts/dotfiles.zsh
Normal file
@ -0,0 +1,60 @@
|
||||
#
|
||||
# scwrypts dot-files config
|
||||
#
|
||||
|
||||
TERMINFO_PATH="$DOTWRYN/config/terminfo"
|
||||
SAFE_SYMLINKS=0
|
||||
|
||||
# lines which begin with '#' are ignored
|
||||
SYMLINKS="
|
||||
# --------------------------------------------------------------------------
|
||||
# fully qualified path ~/.config/THE-REST
|
||||
# --------------------------------------------------------------------------
|
||||
$DOTWRYN/bin/i3-utils i3/utils
|
||||
$DOTWRYN/colorschemes/active/kitty.conf kitty/theme.conf
|
||||
$DOTWRYN/colorschemes/active/alacritty.toml alacritty/theme.toml
|
||||
$DOTWRYN/colorschemes/active/alacritty.yaml alacritty/theme.yml
|
||||
$DOTWRYN/config/alacritty.toml alacritty/alacritty.toml
|
||||
$DOTWRYN/config/alacritty.default.toml alacritty/default.toml
|
||||
$DOTWRYN/config/alacritty.yaml alacritty/alacritty.yml
|
||||
$DOTWRYN/config/bat.conf bat/config
|
||||
$DOTWRYN/config/code-activator.conf code-activator-zsh/settings.zsh
|
||||
$DOTWRYN/config/compton.conf compton/compton.conf
|
||||
$DOTWRYN/config/flameshot.ini flameshot/flameshot.ini
|
||||
$DOTWRYN/config/git.conf git/config
|
||||
$DOTWRYN/config/htop.conf htop/htoprc
|
||||
$DOTWRYN/config/i3status.conf i3status/config
|
||||
$DOTWRYN/config/kitty.conf kitty/kitty.conf
|
||||
$DOTWRYN/config/mssqlcli.conf mssqlci/config
|
||||
$DOTWRYN/config/pgcli.conf pgcli/config
|
||||
$DOTWRYN/config/polybar.ini polybar/config.ini
|
||||
$DOTWRYN/config/pylint.conf pylintrc
|
||||
$DOTWRYN/config/ripgrep.conf ripgrep/config
|
||||
$DOTWRYN/config/scwrypts/config.zsh scwrypts/config.zsh
|
||||
$DOTWRYN/config/scwrypts/dotfiles.zsh scwrypts/dotfiles.zsh
|
||||
$DOTWRYN/config/scwrypts/vundle.zsh scwrypts/vundle.zsh
|
||||
$DOTWRYN/config/tmux.conf tmux/tmux.conf
|
||||
$DOTWRYN/config/xcompose.conf X11/xcompose
|
||||
$DOTWRYN/config/xconfig.conf X11/xconfig
|
||||
$DOTWRYN/config/xinitrc.i3 ../.xinitrc
|
||||
$DOTWRYN/config/xinitrc.i3 X11/xinitrc
|
||||
$DOTWRYN/bin/vim ../.local/bin/vim
|
||||
$DOTWRYN/bin/$(hostnamectl --static) ../.$(hostnamectl --static)
|
||||
|
||||
$( () {
|
||||
local SOURCE_CONTROLLED_GROUPS=(dotwryn remote scwrypts)
|
||||
local GROUP_MATCH_STRING="\\($(printf '\|%s' ${SOURCE_CONTROLLED_GROUPS[@]} | sed 's/^\\|//')\\)"
|
||||
|
||||
local _LOCAL='scwrypts/environments'
|
||||
local _DOTWRYN="$DOTWRYN/config/scwrypts/environments"
|
||||
|
||||
find "$HOME/.config/$_LOCAL" -mindepth 1 -maxdepth 1 -name \*.env.yaml \
|
||||
| sed -n "s^.*/\(local\(\.[^.]\+\)\{0,\}\.$GROUP_MATCH_STRING.env.yaml\)$$_DOTWRYN/\1^$_LOCAL/\1p" \
|
||||
| grep -v '\.secret\.' \
|
||||
| sort --unique \
|
||||
| column -ts '^' \
|
||||
;
|
||||
} )
|
||||
"
|
||||
|
||||
true
|
@ -1,4 +1,2 @@
|
||||
--- # local.pikachu > dotwryn
|
||||
desktop:
|
||||
backlight-device:
|
||||
value: amdgpu_bl1
|
||||
--- # local.altaria > dotwryn
|
||||
# no configuration set
|
||||
|
@ -1,2 +1,2 @@
|
||||
--- # local.pikachu > remote
|
||||
--- # local.altaria > remote
|
||||
# no configuration set
|
||||
|
@ -1,2 +1,10 @@
|
||||
--- # local.pikachu > scwrypts
|
||||
# no configuration set
|
||||
--- # local.altaria > scwrypts
|
||||
media-sync:
|
||||
targets:
|
||||
value:
|
||||
- Pictures
|
||||
- Documents
|
||||
- Media
|
||||
- .local/.porn
|
||||
- Games/roms
|
||||
- .local/share/dolphin-emu
|
||||
|
@ -2,7 +2,44 @@
|
||||
# Scwrypts Build Definitions
|
||||
#
|
||||
|
||||
VUNDLE__BUILD__ale() {
|
||||
# ... build steps from /home/w0ryn/.vim/ale
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__nerdtree() {
|
||||
# ... build steps from /home/w0ryn/.vim/nerdtree
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__unicode.vim() {
|
||||
# ... build steps from /home/w0ryn/.vim/unicode.vim
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__vim-dim() {
|
||||
# ... build steps from /home/w0ryn/.vim/vim-dim
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__vim-fugitive() {
|
||||
# ... build steps from /home/w0ryn/.vim/vim-fugitive
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__vim-go() {
|
||||
# ... build steps from /home/w0ryn/.vim/vim-go
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__vim-surround() {
|
||||
# ... build steps from /home/w0ryn/.vim/vim-surround
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__vim-hexokinase() {
|
||||
# ... build steps from /home/w0ryn/.vim/vim-hexokinase
|
||||
make hexokinase
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__youcompleteme() {
|
||||
# ... build steps from /home/w0ryn/.vim/youcompleteme
|
||||
./install.py --all
|
||||
}
|
||||
|
||||
VUNDLE__BUILD__rust.vim() {
|
||||
# ... build steps from /home/w0ryn/.vim/rust.vim
|
||||
}
|
||||
|
@ -0,0 +1 @@
|
||||
ACTION=="add", RUN+="/home/w0ryn/.wryn/bin/pikachu/set-battery-max-charge"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user