update ryudo configs, kshrc, and neomuttrc
This commit is contained in:
parent
90e589e63c
commit
b047e3c7d3
5 changed files with 387 additions and 17 deletions
23
kshrc
23
kshrc
|
@ -17,6 +17,8 @@ export MICRO_TRUECOLOR=1
|
||||||
export GOPATH=~/src/go
|
export GOPATH=~/src/go
|
||||||
export ZEIT_DB=~/.zeit/db
|
export ZEIT_DB=~/.zeit/db
|
||||||
export DOTNET_ROOT=${HOME}/bin/dotnet
|
export DOTNET_ROOT=${HOME}/bin/dotnet
|
||||||
|
export SIGNID=90587A740FA4FFA0971575383B7FBC22144E6398
|
||||||
|
export ENCRID=F5672E001CC962BE3B6C8887C65B677280C66DE5
|
||||||
if [ "$TERM" = "dumb" ]; then
|
if [ "$TERM" = "dumb" ]; then
|
||||||
PS1='$(indicator) '
|
PS1='$(indicator) '
|
||||||
else
|
else
|
||||||
|
@ -127,7 +129,7 @@ mondev(){
|
||||||
db)
|
db)
|
||||||
docker run -it --rm -e MONGO_INITDB_ROOT_USERNAME="root" -e MONGO_INITDB_ROOT_PASSWORD="BadDefaultPassword" -e dbUser="mondev" -e dbPwd="mondevpw" -p 27017:27017 mondev_db;;
|
docker run -it --rm -e MONGO_INITDB_ROOT_USERNAME="root" -e MONGO_INITDB_ROOT_PASSWORD="BadDefaultPassword" -e dbUser="mondev" -e dbPwd="mondevpw" -p 27017:27017 mondev_db;;
|
||||||
acs)
|
acs)
|
||||||
docker run -it --rm -e RABBITMQ_ADDRESS="172.17.0.3" -e RABBITMQ_PORT="5672" -e CLIENT_PORT="25252" -p 15673:15673 -p 25252:25252 mondev_acs;;
|
docker run -it --rm --name acs -e RABBITMQ_ADDRESS="172.17.0.3" -e RABBITMQ_PORT="5672" -e CLIENT_PORT="25252" -p 15673:15673 -p 25252:25252 mondev_acs;;
|
||||||
mq)
|
mq)
|
||||||
docker run -it --rm --hostname localhost --name rabbit -p 5672:5672 -p 15672:15672 rabbitmq;;
|
docker run -it --rm --hostname localhost --name rabbit -p 5672:5672 -p 15672:15672 rabbitmq;;
|
||||||
*)
|
*)
|
||||||
|
@ -143,7 +145,7 @@ siroonian()
|
||||||
auth)
|
auth)
|
||||||
kinit dstevens;;
|
kinit dstevens;;
|
||||||
desktop)
|
desktop)
|
||||||
rdesktop -u dstevens -d siroonian.local -p - -MKz -x m -r sound:local -r clipboard:PRIMARYCLIPBOARD devworkstation3.siroonian.local;;
|
rdesktop -u dstevens -d siroonian.local -p - -KMz -x m -r sound:local -r clipboard:PRIMARYCLIPBOARD devworkstation3.siroonian.local;;
|
||||||
*)
|
*)
|
||||||
echo "usage: siroonian [connect | auth | desktop]";;
|
echo "usage: siroonian [connect | auth | desktop]";;
|
||||||
esac
|
esac
|
||||||
|
@ -202,16 +204,27 @@ mode(){
|
||||||
case $1 in
|
case $1 in
|
||||||
desktop)
|
desktop)
|
||||||
~/src/zenUtils/extdisplay.sh solo
|
~/src/zenUtils/extdisplay.sh solo
|
||||||
sed -i -e 's/size: 6\.5/size: 9/' .config/alacritty-ryudo.yml
|
sed -i -e "s/size: 6.5/size: 9/" ~/.config/alacritty-ryudo.yml
|
||||||
;;
|
;;
|
||||||
laptop)
|
laptop)
|
||||||
~/src/zenUtils/extdisplay.sh off
|
~/src/zenUtils/extdisplay.sh off
|
||||||
sed -i -e 's/size: 9/size: 6\.5/' .config/alacritty-ryudo.yml
|
sed -i -e "s/size: 9/size: 6.5/" ~/.config/alacritty-ryudo.yml
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
nitrogen --restore
|
nitrogen --restore
|
||||||
|
killall xclock; xclock -strftime "%Y-%m-%d %H:%M" -geometry -0-0 &
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mkthumb() {
|
||||||
|
if [ ! -z "$2" ]; then
|
||||||
|
size=$2
|
||||||
|
else
|
||||||
|
size=500
|
||||||
|
fi
|
||||||
|
convert $1 -strip -auto-orient -resize ${size} -dither FloydSteinberg -colors 16 $1.thumb.png
|
||||||
|
}
|
||||||
|
|
||||||
|
alias alsamixer='alsamixer --no-color'
|
||||||
alias web='silence $BROWSER'
|
alias web='silence $BROWSER'
|
||||||
alias mail='silence thunderbird'
|
alias mail='silence thunderbird'
|
||||||
alias fs='silence pcmanfm-qt'
|
alias fs='silence pcmanfm-qt'
|
||||||
|
@ -222,7 +235,7 @@ alias gpg='gpg2'
|
||||||
alias zoom='flatpak --device=all --filesystem=host run us.zoom.Zoom'
|
alias zoom='flatpak --device=all --filesystem=host run us.zoom.Zoom'
|
||||||
alias teams='flatpak --device=all --filesystem=host run com.microsoft.Teams'
|
alias teams='flatpak --device=all --filesystem=host run com.microsoft.Teams'
|
||||||
alias micro='microCmd'
|
alias micro='microCmd'
|
||||||
alias mutt='echo -ne "\033]0;neomutt\007"; neomutt'
|
alias mutt='export PINENTRY_USER_DATA=curses; echo -ne "\033]0;neomutt\007"; neomutt'
|
||||||
alias startx='exec startx'
|
alias startx='exec startx'
|
||||||
# alias mpv='mpv --player-operation-mode=pseudo-gui --term-osd=force --cover-art-files=/home/nilix/lib/img/ux/sound_only.png'
|
# alias mpv='mpv --player-operation-mode=pseudo-gui --term-osd=force --cover-art-files=/home/nilix/lib/img/ux/sound_only.png'
|
||||||
alias ls='ls -lh --group-directories-first'
|
alias ls='ls -lh --group-directories-first'
|
||||||
|
|
329
kwin/kglobalshortcutsrc.bismuth
Normal file
329
kwin/kglobalshortcutsrc.bismuth
Normal file
|
@ -0,0 +1,329 @@
|
||||||
|
[ActivityManager]
|
||||||
|
_k_friendly_name=Activity Manager
|
||||||
|
switch-to-activity-9bc96348-d4d3-4b63-a9e3-854589a21777=none,none,Switch to activity "Default"
|
||||||
|
|
||||||
|
[KDE Keyboard Layout Switcher]
|
||||||
|
Switch keyboard layout to English (US)=none,none,Switch keyboard layout to English (US)
|
||||||
|
Switch to Next Keyboard Layout=Ctrl+Alt+K,Ctrl+Alt+K,Switch to Next Keyboard Layout
|
||||||
|
_k_friendly_name=Keyboard Layout Switcher
|
||||||
|
|
||||||
|
[kaccess]
|
||||||
|
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Toggle Screen Reader On and Off
|
||||||
|
_k_friendly_name=Accessibility
|
||||||
|
|
||||||
|
[kcm_touchpad]
|
||||||
|
Disable Touchpad=Touchpad Off,Touchpad Off,Disable Touchpad
|
||||||
|
Enable Touchpad=Touchpad On,Touchpad On,Enable Touchpad
|
||||||
|
Toggle Touchpad=Touchpad Toggle,Touchpad Toggle,Toggle Touchpad
|
||||||
|
_k_friendly_name=Touchpad
|
||||||
|
|
||||||
|
[kded5]
|
||||||
|
Show System Activity=Ctrl+Esc,Ctrl+Esc,Show System Activity
|
||||||
|
_k_friendly_name=KDE Daemon
|
||||||
|
display=Display\t,Display\tMeta+P,Switch Display
|
||||||
|
|
||||||
|
[khotkeys]
|
||||||
|
_k_friendly_name=Custom Shortcuts Service
|
||||||
|
{af366365-0a10-428d-8e26-6323cca1f634}=Ctrl+Alt+T,none,Launch Konsole
|
||||||
|
{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=none,none,Search
|
||||||
|
|
||||||
|
[krunner.desktop]
|
||||||
|
RunClipboard=Alt+Shift+F2,Alt+Shift+F2,Run command on clipboard contents
|
||||||
|
_k_friendly_name=KRunner
|
||||||
|
_launch=,,KRunner
|
||||||
|
|
||||||
|
[ksmserver]
|
||||||
|
Halt Without Confirmation=Ctrl+Alt+Shift+PgDown,Ctrl+Alt+Shift+PgDown,Halt Without Confirmation
|
||||||
|
Lock Session=\tCtrl+Alt+L\tScreensaver,Meta+L\tCtrl+Alt+L\tScreensaver,Lock Session
|
||||||
|
Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Log Out
|
||||||
|
Log Out Without Confirmation=Ctrl+Alt+Shift+Del,Ctrl+Alt+Shift+Del,Log Out Without Confirmation
|
||||||
|
Reboot Without Confirmation=Ctrl+Alt+Shift+PgUp,Ctrl+Alt+Shift+PgUp,Reboot Without Confirmation
|
||||||
|
_k_friendly_name=Session Management
|
||||||
|
|
||||||
|
[kwin]
|
||||||
|
Activate Window Demanding Attention=Ctrl+Alt+A,Ctrl+Alt+A,Activate Window Demanding Attention
|
||||||
|
Decrease Opacity=none,none,Decrease Opacity of Active Window by 5 %
|
||||||
|
Expose=Ctrl+F9,Ctrl+F9,Toggle Present Windows (Current desktop)
|
||||||
|
ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Toggle Present Windows (All desktops)
|
||||||
|
ExposeClass=Ctrl+F7,Ctrl+F7,Toggle Present Windows (Window class)
|
||||||
|
FlipSwitchAll=none,none,Toggle Flip Switch (All desktops)
|
||||||
|
FlipSwitchCurrent=none,none,Toggle Flip Switch (Current desktop)
|
||||||
|
Increase Opacity=none,none,Increase Opacity of Active Window by 5 %
|
||||||
|
Invert Screen Colors=none,none,Invert Screen Colors
|
||||||
|
Kill Window=Ctrl+Alt+Esc,Ctrl+Alt+Esc,Kill Window
|
||||||
|
Krohnkite: Cycle Layout=none,none,
|
||||||
|
Krohnkite: Decrease=none,none,
|
||||||
|
Krohnkite: Down/Next=none,none,
|
||||||
|
Krohnkite: Float=none,none,
|
||||||
|
Krohnkite: Float All=none,none,
|
||||||
|
Krohnkite: Floating Layout=Meta+Shift+F,none,
|
||||||
|
Krohnkite: Grow Height=none,none,
|
||||||
|
Krohnkite: Grow Width=none,none,
|
||||||
|
Krohnkite: Increase=none,none,
|
||||||
|
Krohnkite: Left=none,none,
|
||||||
|
Krohnkite: Monocle Layout=none,none,
|
||||||
|
Krohnkite: Move Down/Next=none,none,
|
||||||
|
Krohnkite: Move Left=none,none,
|
||||||
|
Krohnkite: Move Right=none,none,
|
||||||
|
Krohnkite: Move Up/Prev=none,none,
|
||||||
|
Krohnkite: Next Layout=none,none,
|
||||||
|
Krohnkite: Previous Layout=none,none,
|
||||||
|
Krohnkite: Quarter Layout=none,none,
|
||||||
|
Krohnkite: Right=none,none,
|
||||||
|
Krohnkite: Rotate=,none,
|
||||||
|
Krohnkite: Rotate Part=,none,
|
||||||
|
Krohnkite: Set master=none,none,
|
||||||
|
Krohnkite: Shrink Height=none,none,
|
||||||
|
Krohnkite: Shrink Width=none,none,
|
||||||
|
Krohnkite: Spread Layout=,none,
|
||||||
|
Krohnkite: Stair Layout=none,none,
|
||||||
|
Krohnkite: Three Column Layout=none,none,
|
||||||
|
Krohnkite: Tile Layout=none,none,
|
||||||
|
Krohnkite: Up/Prev=none,none,
|
||||||
|
MoveMouseToCenter=Meta+F6,Meta+F6,Move Mouse to Center
|
||||||
|
MoveMouseToFocus=Meta+F5,Meta+F5,Move Mouse to Focus
|
||||||
|
MoveWindowToCenter=,none,Move Window to Center
|
||||||
|
MoveZoomDown=none,none,Move Zoomed Area Downwards
|
||||||
|
MoveZoomLeft=none,none,Move Zoomed Area to Left
|
||||||
|
MoveZoomRight=none,none,Move Zoomed Area to Right
|
||||||
|
MoveZoomUp=none,none,Move Zoomed Area Upwards
|
||||||
|
Setup Window Shortcut=none,none,Setup Window Shortcut
|
||||||
|
Show Desktop=,Meta+D,Show Desktop
|
||||||
|
ShowDesktopGrid=Ctrl+F8,Ctrl+F8,Show Desktop Grid
|
||||||
|
Suspend Compositing=,Alt+Shift+F12,Suspend Compositing
|
||||||
|
Switch One Desktop Down=Meta+Down,Meta+Ctrl+Down,Switch One Desktop Down
|
||||||
|
Switch One Desktop Up=Meta+Up,Meta+Ctrl+Up,Switch One Desktop Up
|
||||||
|
Switch One Desktop to the Left=Meta+Left,Meta+Ctrl+Left,Switch One Desktop to the Left
|
||||||
|
Switch One Desktop to the Right=Meta+Right,Meta+Ctrl+Right,Switch One Desktop to the Right
|
||||||
|
Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Switch to Window Below
|
||||||
|
Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Switch to Window to the Left
|
||||||
|
Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Switch to Window to the Right
|
||||||
|
Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Switch to Window Above
|
||||||
|
Switch to Desktop 1=Ctrl+F1,Ctrl+F1,Switch to Desktop 1
|
||||||
|
Switch to Desktop 10=none,none,Switch to Desktop 10
|
||||||
|
Switch to Desktop 11=none,none,Switch to Desktop 11
|
||||||
|
Switch to Desktop 12=none,none,Switch to Desktop 12
|
||||||
|
Switch to Desktop 13=none,none,Switch to Desktop 13
|
||||||
|
Switch to Desktop 14=none,none,Switch to Desktop 14
|
||||||
|
Switch to Desktop 15=none,none,Switch to Desktop 15
|
||||||
|
Switch to Desktop 16=none,none,Switch to Desktop 16
|
||||||
|
Switch to Desktop 17=none,none,Switch to Desktop 17
|
||||||
|
Switch to Desktop 18=none,none,Switch to Desktop 18
|
||||||
|
Switch to Desktop 19=none,none,Switch to Desktop 19
|
||||||
|
Switch to Desktop 2=Ctrl+F2,Ctrl+F2,Switch to Desktop 2
|
||||||
|
Switch to Desktop 20=none,none,Switch to Desktop 20
|
||||||
|
Switch to Desktop 3=Ctrl+F3,Ctrl+F3,Switch to Desktop 3
|
||||||
|
Switch to Desktop 4=Ctrl+F4,Ctrl+F4,Switch to Desktop 4
|
||||||
|
Switch to Desktop 5=none,none,Switch to Desktop 5
|
||||||
|
Switch to Desktop 6=none,none,Switch to Desktop 6
|
||||||
|
Switch to Desktop 7=none,none,Switch to Desktop 7
|
||||||
|
Switch to Desktop 8=none,none,Switch to Desktop 8
|
||||||
|
Switch to Desktop 9=none,none,Switch to Desktop 9
|
||||||
|
Switch to Next Desktop=none,none,Switch to Next Desktop
|
||||||
|
Switch to Next Screen=,none,Switch to Next Screen
|
||||||
|
Switch to Previous Desktop=none,none,Switch to Previous Desktop
|
||||||
|
Switch to Previous Screen=Meta+\\,,none,Switch to Previous Screen
|
||||||
|
Switch to Screen 0=none,none,Switch to Screen 0
|
||||||
|
Switch to Screen 1=none,none,Switch to Screen 1
|
||||||
|
Switch to Screen 2=none,none,Switch to Screen 2
|
||||||
|
Switch to Screen 3=none,none,Switch to Screen 3
|
||||||
|
Switch to Screen 4=none,none,Switch to Screen 4
|
||||||
|
Switch to Screen 5=none,none,Switch to Screen 5
|
||||||
|
Switch to Screen 6=none,none,Switch to Screen 6
|
||||||
|
Switch to Screen 7=none,none,Switch to Screen 7
|
||||||
|
TILING-I3: Set Normal Mode=none,none,TILING-I3: Set Normal Mode
|
||||||
|
TILING-I3: Set Wrap Horizontal Mode=none,none,TILING-I3: Set Wrap Horizontal Mode
|
||||||
|
TILING-I3: Set Wrap Vertical Mode=none,none,TILING-I3: Set Wrap Vertical Mode
|
||||||
|
TILING: Cycle Rotations=Meta+Shift+R,none,TILING: Cycle Rotations
|
||||||
|
TILING: Decrease Number Of Masters=Meta+_,none,TILING: Decrease Number Of Masters
|
||||||
|
TILING: Dump Clients=,none,TILING: Dump Clients
|
||||||
|
TILING: Focus next tile=none,none,TILING: Focus next tile
|
||||||
|
TILING: Focus previous tile=none,none,TILING: Focus previous tile
|
||||||
|
TILING: Increase Number Of Masters=Meta+*,none,TILING: Increase Number Of Masters
|
||||||
|
TILING: Move Window Down=,none,TILING: Move Window Down
|
||||||
|
TILING: Move Window Left=,none,TILING: Move Window Left
|
||||||
|
TILING: Move Window Right=,none,TILING: Move Window Right
|
||||||
|
TILING: Move Window To New Desktop=Meta+Shift+D,none,TILING: Move Window To New Desktop
|
||||||
|
TILING: Move Window Up=,none,TILING: Move Window Up
|
||||||
|
TILING: Next Tiling Layout=Meta+Shift+PgDown,none,TILING: Next Tiling Layout
|
||||||
|
TILING: Previous Tiling Layout=Meta+Shift+PgUp,none,TILING: Previous Tiling Layout
|
||||||
|
TILING: Resize Active Window To The Bottom=Meta+Alt+J,none,TILING: Resize Active Window To The Bottom
|
||||||
|
TILING: Resize Active Window To The Left=Meta+Alt+H,none,TILING: Resize Active Window To The Left
|
||||||
|
TILING: Resize Active Window To The Right=Meta+Alt+L,none,TILING: Resize Active Window To The Right
|
||||||
|
TILING: Resize Active Window To The Top=Meta+Alt+K,none,TILING: Resize Active Window To The Top
|
||||||
|
TILING: Swap Window With Master=Meta+Shift+M,none,TILING: Swap Window With Master
|
||||||
|
TILING: Swap with next tile=none,none,TILING: Swap with next tile
|
||||||
|
TILING: Swap with previous tile=none,none,TILING: Swap with previous tile
|
||||||
|
TILING: Tile now=none,none,TILING: Tile now
|
||||||
|
TILING: Toggle Border for all=none,none,TILING: Toggle Border for all
|
||||||
|
TILING: Toggle Floating=,none,TILING: Toggle Floating
|
||||||
|
TILING: Toggle Tiling=Meta+Shift+F11,none,TILING: Toggle Tiling
|
||||||
|
Toggle Night Color=none,none,Toggle Night Color
|
||||||
|
Toggle Window Raise/Lower=none,none,Toggle Window Raise/Lower
|
||||||
|
Walk Through Desktop List=none,none,Walk Through Desktop List
|
||||||
|
Walk Through Desktop List (Reverse)=none,none,Walk Through Desktop List (Reverse)
|
||||||
|
Walk Through Desktops=none,none,Walk Through Desktops
|
||||||
|
Walk Through Desktops (Reverse)=none,none,Walk Through Desktops (Reverse)
|
||||||
|
Walk Through Windows=none,Alt+Tab,Walk Through Windows
|
||||||
|
Walk Through Windows (Reverse)=none,Alt+Shift+Backtab,Walk Through Windows (Reverse)
|
||||||
|
Walk Through Windows Alternative=Meta+U,none,Walk Through Windows Alternative
|
||||||
|
Walk Through Windows Alternative (Reverse)=none,none,Walk Through Windows Alternative (Reverse)
|
||||||
|
Walk Through Windows of Current Application=Alt+`,Alt+`,Walk Through Windows of Current Application
|
||||||
|
Walk Through Windows of Current Application (Reverse)=Alt+~,Alt+~,Walk Through Windows of Current Application (Reverse)
|
||||||
|
Walk Through Windows of Current Application Alternative=none,none,Walk Through Windows of Current Application Alternative
|
||||||
|
Walk Through Windows of Current Application Alternative (Reverse)=none,none,Walk Through Windows of Current Application Alternative (Reverse)
|
||||||
|
Window Above Other Windows=none,none,Keep Window Above Others
|
||||||
|
Window Below Other Windows=none,none,Keep Window Below Others
|
||||||
|
Window Close=Meta+D,Alt+F4,Close Window
|
||||||
|
Window Fullscreen=none,none,Make Window Fullscreen
|
||||||
|
Window Grow Horizontal=none,none,Pack Grow Window Horizontally
|
||||||
|
Window Grow Vertical=none,none,Pack Grow Window Vertically
|
||||||
|
Window Lower=none,none,Lower Window
|
||||||
|
Window Maximize=,Meta+PgUp,Maximize Window
|
||||||
|
Window Maximize Horizontal=none,none,Maximize Window Horizontally
|
||||||
|
Window Maximize Vertical=none,none,Maximize Window Vertically
|
||||||
|
Window Minimize=Meta+I,Meta+PgDown,Minimize Window
|
||||||
|
Window Move=Meta+V,none,Move Window
|
||||||
|
Window No Border=none,none,Hide Window Border
|
||||||
|
Window On All Desktops=none,none,Keep Window on All Desktops
|
||||||
|
Window One Desktop Down=none,Meta+Ctrl+Shift+Down,Window One Desktop Down
|
||||||
|
Window One Desktop Up=none,Meta+Ctrl+Shift+Up,Window One Desktop Up
|
||||||
|
Window One Desktop to the Left=none,Meta+Ctrl+Shift+Left,Window One Desktop to the Left
|
||||||
|
Window One Desktop to the Right=none,Meta+Ctrl+Shift+Right,Window One Desktop to the Right
|
||||||
|
Window Operations Menu=Alt+F3,Alt+F3,Window Operations Menu
|
||||||
|
Window Pack Down=none,none,Pack Window Down
|
||||||
|
Window Pack Left=none,none,Pack Window to the Left
|
||||||
|
Window Pack Right=none,none,Pack Window to the Right
|
||||||
|
Window Pack Up=none,none,Pack Window Up
|
||||||
|
Window Quick Tile Bottom=,Meta+Down,Quick Tile Window to the Bottom
|
||||||
|
Window Quick Tile Bottom Left=,none,Quick Tile Window to the Bottom Left
|
||||||
|
Window Quick Tile Bottom Right=,none,Quick Tile Window to the Bottom Right
|
||||||
|
Window Quick Tile Left=,Meta+Left,Quick Tile Window to the Left
|
||||||
|
Window Quick Tile Right=,Meta+Right,Quick Tile Window to the Right
|
||||||
|
Window Quick Tile Top=,Meta+Up,Quick Tile Window to the Top
|
||||||
|
Window Quick Tile Top Left=,none,Quick Tile Window to the Top Left
|
||||||
|
Window Quick Tile Top Right=,none,Quick Tile Window to the Top Right
|
||||||
|
Window Raise=none,none,Raise Window
|
||||||
|
Window Resize=Meta+R,none,Resize Window
|
||||||
|
Window Shade=none,none,Shade Window
|
||||||
|
Window Shrink Horizontal=none,none,Pack Shrink Window Horizontally
|
||||||
|
Window Shrink Vertical=none,none,Pack Shrink Window Vertically
|
||||||
|
Window to Desktop 1=none,none,Window to Desktop 1
|
||||||
|
Window to Desktop 10=none,none,Window to Desktop 10
|
||||||
|
Window to Desktop 11=none,none,Window to Desktop 11
|
||||||
|
Window to Desktop 12=none,none,Window to Desktop 12
|
||||||
|
Window to Desktop 13=none,none,Window to Desktop 13
|
||||||
|
Window to Desktop 14=none,none,Window to Desktop 14
|
||||||
|
Window to Desktop 15=none,none,Window to Desktop 15
|
||||||
|
Window to Desktop 16=none,none,Window to Desktop 16
|
||||||
|
Window to Desktop 17=none,none,Window to Desktop 17
|
||||||
|
Window to Desktop 18=none,none,Window to Desktop 18
|
||||||
|
Window to Desktop 19=none,none,Window to Desktop 19
|
||||||
|
Window to Desktop 2=none,none,Window to Desktop 2
|
||||||
|
Window to Desktop 20=none,none,Window to Desktop 20
|
||||||
|
Window to Desktop 3=none,none,Window to Desktop 3
|
||||||
|
Window to Desktop 4=none,none,Window to Desktop 4
|
||||||
|
Window to Desktop 5=none,none,Window to Desktop 5
|
||||||
|
Window to Desktop 6=none,none,Window to Desktop 6
|
||||||
|
Window to Desktop 7=none,none,Window to Desktop 7
|
||||||
|
Window to Desktop 8=none,none,Window to Desktop 8
|
||||||
|
Window to Desktop 9=none,none,Window to Desktop 9
|
||||||
|
Window to Next Desktop=Meta+Shift+Right,none,Window to Next Desktop
|
||||||
|
Window to Next Screen=Meta+>,Meta+Shift+Right,Window to Next Screen
|
||||||
|
Window to Previous Desktop=Meta+Shift+Left,none,Window to Previous Desktop
|
||||||
|
Window to Previous Screen=Meta+<,Meta+Shift+Left,Window to Previous Screen
|
||||||
|
Window to Screen 0=none,none,Window to Screen 0
|
||||||
|
Window to Screen 1=none,none,Window to Screen 1
|
||||||
|
Window to Screen 2=none,none,Window to Screen 2
|
||||||
|
Window to Screen 3=none,none,Window to Screen 3
|
||||||
|
Window to Screen 4=none,none,Window to Screen 4
|
||||||
|
Window to Screen 5=none,none,Window to Screen 5
|
||||||
|
Window to Screen 6=none,none,Window to Screen 6
|
||||||
|
Window to Screen 7=none,none,Window to Screen 7
|
||||||
|
_k_friendly_name=KWin
|
||||||
|
bismuth_decrease_master_size=Meta+H,none,Bismuth: Decrease Master Area Size
|
||||||
|
bismuth_decrease_master_win_count=Meta+P,none,Bismuth: Decrease Master Area Window Count
|
||||||
|
bismuth_decrease_window_height=Meta+Ctrl+J,none,Bismuth: Decrease Window Height
|
||||||
|
bismuth_decrease_window_width=Meta+Ctrl+H,none,Bismuth: Decrease Window Width
|
||||||
|
bismuth_focus_bottom_window=,none,Bismuth: Focus Bottom Window
|
||||||
|
bismuth_focus_left_window=,none,Bismuth: Focus Left Window
|
||||||
|
bismuth_focus_next_window=Meta+J\tAlt+Tab,none,Bismuth: Focus Next Window
|
||||||
|
bismuth_focus_prev_window=Meta+K\tAlt+Shift+Tab,none,Bismuth: Focus Previous Window
|
||||||
|
bismuth_focus_right_window=,none,Bismuth: Focus Right Window
|
||||||
|
bismuth_focus_upper_window=,none,Bismuth: Focus Upper Window
|
||||||
|
bismuth_increase_master_size=Meta+L,none,Bismuth: Increase Master Area Size
|
||||||
|
bismuth_increase_master_win_count=Meta+O,none,Bismuth: Increase Master Area Window Count
|
||||||
|
bismuth_increase_window_height=Meta+Ctrl+K,none,Bismuth: Increase Window Height
|
||||||
|
bismuth_increase_window_width=Meta+Ctrl+L,none,Bismuth: Increase Window Width
|
||||||
|
bismuth_move_window_to_bottom_pos=,none,Bismuth: Move Window Down
|
||||||
|
bismuth_move_window_to_left_pos=Meta+Shift+H,none,Bismuth: Move Window Left
|
||||||
|
bismuth_move_window_to_next_pos=Meta+Shift+J,none,Bismuth: Move Window to the Next Position
|
||||||
|
bismuth_move_window_to_prev_pos=Meta+Shift+K,none,Bismuth: Move Window to the Previous Position
|
||||||
|
bismuth_move_window_to_right_pos=Meta+Shift+L,none,Bismuth: Move Window Right
|
||||||
|
bismuth_move_window_to_upper_pos=,none,Bismuth: Move Window Up
|
||||||
|
bismuth_next_layout=Meta+\\\\,none,Bismuth: Switch to the Next Layout
|
||||||
|
bismuth_prev_layout=Meta+|,none,Bismuth: Switch to the Previous Layout
|
||||||
|
bismuth_push_window_to_master=Meta+Return,none,Bismuth: Push Active Window to Master Area
|
||||||
|
bismuth_rotate=,none,Bismuth: Rotate
|
||||||
|
bismuth_rotate_part=,none,Bismuth: Rotate Part
|
||||||
|
bismuth_toggle_monocle_layout=Meta+M,none,Bismuth: Toggle Monocle Layout
|
||||||
|
bismuth_toggle_quarter_layout=Meta+Q,none,Bismuth: Toggle Quarter Layout
|
||||||
|
bismuth_toggle_spread_layout=none,none,Bismuth: Toggle Spread Layout
|
||||||
|
bismuth_toggle_stair_layout=none,none,Bismuth: Toggle Stair Layout
|
||||||
|
bismuth_toggle_three_column_layout=Meta+C,none,Bismuth: Toggle Three Column Layout
|
||||||
|
bismuth_toggle_tile_layout=Meta+T,none,Bismuth: Toggle Tile Layout
|
||||||
|
bismuth_toggle_window_floating=Meta+F,none,Bismuth: Toggle Active Window Floating
|
||||||
|
view_actual_size=,Meta+0,Actual Size
|
||||||
|
view_zoom_in=Meta+=,Meta+=,Zoom In
|
||||||
|
view_zoom_out=Meta+-,Meta+-,Zoom Out
|
||||||
|
|
||||||
|
[org.kde.dolphin.desktop]
|
||||||
|
_k_friendly_name=Dolphin
|
||||||
|
_launch=Meta+E,Meta+E,Dolphin
|
||||||
|
|
||||||
|
[org.kde.konsole.desktop]
|
||||||
|
NewTab=,,Open a New Tab
|
||||||
|
NewWindow=,,Open a New Window
|
||||||
|
_k_friendly_name=Konsole
|
||||||
|
_launch=,,Konsole
|
||||||
|
|
||||||
|
[org.kde.plasma.emojier.desktop]
|
||||||
|
_k_friendly_name=Emoji Selector
|
||||||
|
_launch=none,Meta+.,Emoji Selector
|
||||||
|
|
||||||
|
[org_kde_powerdevil]
|
||||||
|
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Decrease Keyboard Brightness
|
||||||
|
Decrease Screen Brightness=none,Monitor Brightness Down,Decrease Screen Brightness
|
||||||
|
Hibernate=Hibernate,Hibernate,Hibernate
|
||||||
|
Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Increase Keyboard Brightness
|
||||||
|
Increase Screen Brightness=none,Monitor Brightness Up,Increase Screen Brightness
|
||||||
|
PowerDown=Power Down,Power Down,Power Down
|
||||||
|
PowerOff=Power Off,Power Off,Power Off
|
||||||
|
Sleep=Sleep,Sleep,Suspend
|
||||||
|
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Toggle Keyboard Backlight
|
||||||
|
Turn Off Screen=none,none,Turn Off Screen
|
||||||
|
_k_friendly_name=Power Management
|
||||||
|
|
||||||
|
[plasmashell]
|
||||||
|
_k_friendly_name=Plasma
|
||||||
|
activate task manager entry 1=Meta+1,Meta+1,Activate Task Manager Entry 1
|
||||||
|
activate task manager entry 10=Meta+0,Meta+0,Activate Task Manager Entry 10
|
||||||
|
activate task manager entry 2=Meta+2,Meta+2,Activate Task Manager Entry 2
|
||||||
|
activate task manager entry 3=Meta+3,Meta+3,Activate Task Manager Entry 3
|
||||||
|
activate task manager entry 4=Meta+4,Meta+4,Activate Task Manager Entry 4
|
||||||
|
activate task manager entry 5=Meta+5,Meta+5,Activate Task Manager Entry 5
|
||||||
|
activate task manager entry 6=Meta+6,Meta+6,Activate Task Manager Entry 6
|
||||||
|
activate task manager entry 7=Meta+7,Meta+7,Activate Task Manager Entry 7
|
||||||
|
activate task manager entry 8=Meta+8,Meta+8,Activate Task Manager Entry 8
|
||||||
|
activate task manager entry 9=Meta+9,Meta+9,Activate Task Manager Entry 9
|
||||||
|
manage activities=,Meta+Q,Show Activity Switcher
|
||||||
|
next activity=Meta+Tab,Meta+Tab,Walk through activities
|
||||||
|
previous activity=Meta+Shift+Tab,Meta+Shift+Tab,Walk through activities (Reverse)
|
||||||
|
show dashboard=Ctrl+F12,Ctrl+F12,Show Desktop
|
||||||
|
stop current activity=Meta+S,Meta+S,Stop Current Activity
|
||||||
|
switch to next activity=none,none,Switch to Next Activity
|
||||||
|
switch to previous activity=none,none,Switch to Previous Activity
|
||||||
|
|
||||||
|
[systemsettings.desktop]
|
||||||
|
_k_friendly_name=System Settings
|
||||||
|
_launch=Tools,Tools,System Settings
|
24
neomuttrc
24
neomuttrc
|
@ -1,11 +1,15 @@
|
||||||
# basic config
|
# basic config
|
||||||
set sort="reverse-date"
|
set sort="reverse-date"
|
||||||
set realname="Derek Stevens"
|
set realname="Derek Stevens"
|
||||||
set from="drkste@zoho.com"
|
set from="nilix@nilfm.cc"
|
||||||
set display_filter="~/.config/neomutt/aliasbuilder.sh"
|
set display_filter="~/.config/neomutt/aliasbuilder.sh"
|
||||||
set alias_file="~/.config/neomutt/aliases.txt"
|
set alias_file="~/.config/neomutt/aliases.txt"
|
||||||
source "~/.config/neomutt/aliases.txt"
|
source "~/.config/neomutt/aliases.txt"
|
||||||
|
source "~/.config/neomutt/gpg.rc"
|
||||||
set new_mail_command="notify-send -t 10000 -c mail 'new mail' '[%n]'
|
set new_mail_command="notify-send -t 10000 -c mail 'new mail' '[%n]'
|
||||||
|
set text_flowed=yes
|
||||||
|
shutdown-hook 'echo `mbsync -a`'
|
||||||
|
alternates drkste@zoho.com|bladedvox@nilfm.cc|casshernproxy@gmail.com
|
||||||
|
|
||||||
|
|
||||||
# mail viewing
|
# mail viewing
|
||||||
|
@ -17,14 +21,12 @@ set nomarkers
|
||||||
set mbox_type=Maildir
|
set mbox_type=Maildir
|
||||||
set folder="~/lib/mail/zoho/"
|
set folder="~/lib/mail/zoho/"
|
||||||
|
|
||||||
# set mbox_type=Maildir
|
|
||||||
# set folder="imaps://imap.zoho.com"
|
|
||||||
set spoolfile="+INBOX"
|
set spoolfile="+INBOX"
|
||||||
set timeout=150
|
set timeout=150
|
||||||
|
|
||||||
# zoho already copies sent messages to Sent
|
# Imap folder settings
|
||||||
# set record="+Sent"
|
set record="+Sent"
|
||||||
set copy=no
|
set copy=yes
|
||||||
set postponed="+Drafts"
|
set postponed="+Drafts"
|
||||||
set trash="+Trash"
|
set trash="+Trash"
|
||||||
|
|
||||||
|
@ -38,14 +40,16 @@ set message_cachedir="~/.cache/neomutt"
|
||||||
# keybinds
|
# keybinds
|
||||||
macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
|
macro index c "<change-folder>?<toggle-mailboxes>" "open a different folder"
|
||||||
macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"
|
macro pager c "<change-folder>?<toggle-mailboxes>" "open a different folder"
|
||||||
|
bind browser g descend-directory
|
||||||
|
bind index S sync-mailbox
|
||||||
bind attach <return> view-mailcap
|
bind attach <return> view-mailcap
|
||||||
|
|
||||||
# colorscheme
|
# colorscheme
|
||||||
color indicator white brightblack
|
color indicator white brightblack
|
||||||
color body cyan default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
|
color body brightcyan default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
|
||||||
color body cyan default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
|
color body brightcyan default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
|
||||||
color status white black
|
color status brightwhite black
|
||||||
color quoted brightblue default
|
color quoted white default
|
||||||
color search black brightwhite
|
color search black brightwhite
|
||||||
color markers brightmagenta default
|
color markers brightmagenta default
|
||||||
color tilde black default
|
color tilde black default
|
||||||
|
|
1
ryudo.conf
Normal file
1
ryudo.conf
Normal file
|
@ -0,0 +1 @@
|
||||||
|
-virtuals 6 -term alacritty
|
23
ryudorc
Normal file
23
ryudorc
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
xset -b
|
||||||
|
sudo powertop --auto-tune &
|
||||||
|
redshit -x; redshift -O 6000K &
|
||||||
|
xbacklight -set 50 &
|
||||||
|
|
||||||
|
if ! pgrep sirius.sh; then
|
||||||
|
~/src/zenUtils/sirius.sh &
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! pgrep pipewire; then
|
||||||
|
pipewire & sleep 0.3
|
||||||
|
pipewire-pulse &
|
||||||
|
fi
|
||||||
|
|
||||||
|
plumber &
|
||||||
|
nitrogen --restore &
|
||||||
|
xcompmgr & # sleep 0.3
|
||||||
|
~/src/zenUtils/batAlarm.sh &
|
||||||
|
xosview --geometry +0+0 &
|
||||||
|
xclock -strftime "%Y-%m-%d %H:%M" -geometry -0-0 &
|
||||||
|
export GTK_THEME=steppenwolf-dark
|
||||||
|
export WINIT_X11_SCALE_FACTOR=1
|
||||||
|
xbindkeys -f ~/.xbindkeysrc
|
Loading…
Reference in a new issue