Add tmux and cpu stuff
This commit is contained in:
@@ -96,6 +96,25 @@ local plugins = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"christoomey/vim-tmux-navigator",
|
||||||
|
cmd = {
|
||||||
|
"TmuxNavigateLeft",
|
||||||
|
"TmuxNavigateDown",
|
||||||
|
"TmuxNavigateUp",
|
||||||
|
"TmuxNavigateRight",
|
||||||
|
"TmuxNavigatePrevious",
|
||||||
|
"TmuxNavigatorProcessList",
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
|
||||||
|
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
|
||||||
|
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
|
||||||
|
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
|
||||||
|
{ "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
-- -----------------------------------------------------------------------------------------------
|
-- -----------------------------------------------------------------------------------------------
|
||||||
|
|||||||
4
core-setup/arch-surface.conf
Executable file
4
core-setup/arch-surface.conf
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
title Arch Linux (Surface Kernel)
|
||||||
|
linux /vmlinuz-linux-surface
|
||||||
|
initrd /initramfs-linux-surface.img
|
||||||
|
options root=/dev/nvme0n1p2 rw
|
||||||
29
core-setup/cpupower
Normal file
29
core-setup/cpupower
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# Define CPUs governor
|
||||||
|
# valid governors: ondemand, performance, powersave, conservative, userspace.
|
||||||
|
governor='ondemand'
|
||||||
|
|
||||||
|
# Limit frequency range
|
||||||
|
# Valid suffixes: Hz, kHz (default), MHz, GHz, THz
|
||||||
|
#min_freq="400MHz"
|
||||||
|
max_freq="2GHz"
|
||||||
|
|
||||||
|
# Specific frequency to be set.
|
||||||
|
# Requires userspace governor to be available.
|
||||||
|
# Do not set governor field if you use this one.
|
||||||
|
#freq=
|
||||||
|
|
||||||
|
# Utilizes cores in one processor package/socket first before processes are
|
||||||
|
# scheduled to other processor packages/sockets.
|
||||||
|
# See man (1) CPUPOWER-SET for additional details.
|
||||||
|
#mc_scheduler=
|
||||||
|
|
||||||
|
# Utilizes thread siblings of one processor core first before processes are
|
||||||
|
# scheduled to other cores. See man (1) CPUPOWER-SET for additional details.
|
||||||
|
#smp_scheduler=
|
||||||
|
|
||||||
|
# Sets a register on supported Intel processore which allows software to convey
|
||||||
|
# its policy for the relative importance of performance versus energy savings to
|
||||||
|
# the processor. See man (1) CPUPOWER-SET for additional details.
|
||||||
|
#perf_bias=
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 ft=sh et:
|
||||||
2
core-setup/setup
Normal file
2
core-setup/setup
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
cp ./arch-surface.conf /boot/loader/entries/arch-surface.conf
|
||||||
|
cp ./cpupower /etc/default/cpupower
|
||||||
Reference in New Issue
Block a user