mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
b80abe9a54
Resolves #8
11 lines
207 B
Bash
Executable file
11 lines
207 B
Bash
Executable file
#!/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
|