mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
12 lines
207 B
Bash
12 lines
207 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -v
|
||
|
|
||
|
# Get kernel info
|
||
|
UNAME=$(uname -r)
|
||
|
|
||
|
# Install linux tools for the perf binary
|
||
|
sudo apt-get install -y \
|
||
|
linux-tools-common \
|
||
|
linux-tools-generic \
|
||
|
linux-tools-$UNAME
|